Completed
Push — develop ( 0e25c3...d044f3 )
by Zack
16:03
created
vendor/illuminate/support/Traits/Macroable.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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) {
Please login to merge, or discard this patch.