Completed
Pull Request — master (#12)
by Antonio Carlos
07:05
created
src/Support/Traits/Macroable.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         );
45 45
 
46 46
         foreach ($methods as $method) {
47
-            if ($replace || ! static::hasMacro($method->name)) {
47
+            if ($replace || !static::hasMacro($method->name)) {
48 48
                 $method->setAccessible(true);
49 49
                 static::macro($method->name, $method->invoke($mixin));
50 50
             }
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      */
74 74
     public static function __callStatic($method, $parameters)
75 75
     {
76
-        if (! static::hasMacro($method)) {
76
+        if (!static::hasMacro($method)) {
77 77
             throw new BadMethodCallException(sprintf(
78 78
                 'Method %s::%s does not exist.',
79 79
                 static::class,
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      */
102 102
     public function __call($method, $parameters)
103 103
     {
104
-        if (! static::hasMacro($method)) {
104
+        if (!static::hasMacro($method)) {
105 105
             throw new BadMethodCallException(sprintf(
106 106
                 'Method %s::%s does not exist.',
107 107
                 static::class,
Please login to merge, or discard this patch.