Browse Source

Fix Response::of_something() calls

Phill Sparks 13 years ago
parent
commit
e994dffc51
1 changed files with 3 additions and 2 deletions
  1. 3 2
      laravel/response.php

+ 3 - 2
laravel/response.php

@@ -316,8 +316,9 @@ class Response {
 	{
 		if (strpos($method, 'of_') === 0)
 		{
-			return static::with(substr($method, 3), Arr::get($parameters, 0, array()));
+			return static::of(substr($method, 3), Arr::get($parameters, 0, array()));
 		}
+		throw new \BadMethodCallException("Method [$method] is not defined on the Response class.");
 	}
 
-}
+}