@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Moka; |
5 | 5 | |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | { |
130 | 130 | $backtrace = debug_backtrace(); |
131 | 131 | foreach ($backtrace as $frame) { |
132 | - if (!isset($frame['object'])) { |
|
132 | + if ( ! isset($frame['object'])) { |
|
133 | 133 | continue; |
134 | 134 | } |
135 | 135 | |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | */ |
177 | 177 | private static function ensurePluginLoad(string $pluginName): void |
178 | 178 | { |
179 | - if (!array_key_exists($pluginName, self::$mockingStrategies)) { |
|
179 | + if ( ! array_key_exists($pluginName, self::$mockingStrategies)) { |
|
180 | 180 | self::$mockingStrategies[$pluginName] = loadPlugin($pluginName); |
181 | 181 | } |
182 | 182 | } |