Completed
Push — master ( e3fc2f...a51ab2 )
by Antonio Carlos
04:36
created
src/Support/Traits/Macroable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      */
71 71
     public static function __callStatic($method, $parameters)
72 72
     {
73
-        if (! static::hasMacro($method)) {
73
+        if (!static::hasMacro($method)) {
74 74
             throw new BadMethodCallException(sprintf(
75 75
                 'Method %s::%s does not exist.', static::class, $method
76 76
             ));
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      */
95 95
     public function __call($method, $parameters)
96 96
     {
97
-        if (! static::hasMacro($method)) {
97
+        if (!static::hasMacro($method)) {
98 98
             throw new BadMethodCallException(sprintf(
99 99
                 'Method %s::%s does not exist.', static::class, $method
100 100
             ));
Please login to merge, or discard this patch.