Browse Source

Rearranged view methods.

Taylor Otwell 13 years ago
parent
commit
fa1fa876b5
1 changed files with 11 additions and 11 deletions
  1. 11 11
      system/view.php

+ 11 - 11
system/view.php

@@ -204,17 +204,6 @@ class View {
 		static::$composers[$module] = (file_exists($composers)) ? require $composers : array();
 	}
 
-	/**
-	 * Magic Method for handling the dynamic creation of named views.
-	 */
-	public static function __callStatic($method, $parameters)
-	{
-		if (strpos($method, 'of_') === 0)
-		{
-			return static::of(substr($method, 3), $parameters);
-		}
-	}
-
 	/**
 	 * Get the parsed content of the view.
 	 *
@@ -265,6 +254,17 @@ class View {
 		return $this;
 	}
 
+	/**
+	 * Magic Method for handling the dynamic creation of named views.
+	 */
+	public static function __callStatic($method, $parameters)
+	{
+		if (strpos($method, 'of_') === 0)
+		{
+			return static::of(substr($method, 3), $parameters);
+		}
+	}
+
 	/**
 	 * Magic Method for getting items from the view data.
 	 */