Browse Source

added get and set magic methods.

Taylor Otwell 13 years ago
parent
commit
86bbb5f187
1 changed files with 16 additions and 0 deletions
  1. 16 0
      laravel/view.php

+ 16 - 0
laravel/view.php

@@ -353,6 +353,22 @@ class View implements ArrayAccess {
 		unset($this->data[$offset]);
 	}
 
+	/**
+	 * Magic Method for handling dynamic data access.
+	 */
+	public function __get($key)
+	{
+		return $this[$key];
+	}
+
+	/**
+	 * Magic Method for handling the dynamic setting of data.
+	 */
+	public function __set($key, $value)
+	{
+		$this[$key] = $value;
+	}
+
 	/**
 	 * Get the evaluated string content of the view.
 	 *