@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | public static function __callStatic($method, $parameters) |
| 50 | 50 | { |
| 51 | 51 | if (! static::hasMacro($method)) { |
| 52 | - throw new BadMethodCallException("Method {$method} does not exist."); |
|
| 52 | + throw new BadMethodCallException("method {$method} does not exist."); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | if (static::$macros[$method] instanceof Closure) { |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | public function __call($method, $parameters) |
| 72 | 72 | { |
| 73 | 73 | if (! static::hasMacro($method)) { |
| 74 | - throw new BadMethodCallException("Method {$method} does not exist."); |
|
| 74 | + throw new BadMethodCallException("method {$method} does not exist."); |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | if (static::$macros[$method] instanceof Closure) { |