Completed
Pull Request — master (#44)
by Angelo
01:54
created
src/Moka.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.