@@ -44,7 +44,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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, |