Browse Source

Added BadMethodCallException to view's __callStatic method.

Taylor Otwell 13 years ago
parent
commit
060e1f64b8
1 changed files with 3 additions and 1 deletions
  1. 3 1
      laravel/view.php

+ 3 - 1
laravel/view.php

@@ -350,6 +350,8 @@ class View {
 		{
 			return static::of(substr($method, 3), Arr::get($parameters, 0, array()));
 		}
+
+		throw new \BadMethodCallException("Method [$method] is not defined on the View class.");
 	}
 
-}
+}