Completed
Pull Request — master (#44)
by Angelo
02:04
created
src/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 require_once __DIR__ . '/Plugin/loadPlugin.php';
6 6
 require_once __DIR__ . '/Factory/buildProxy.php';
Please login to merge, or discard this patch.
src/Builder/ProxyBuilder.php 1 patch
Spacing   +2 added lines, -2 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\Builder;
5 5
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
             return buildProxy($fqcnOrAlias, $this->mockingStrategy);
68 68
         }
69 69
 
70
-        if (!$this->container->has($alias)) {
70
+        if ( ! $this->container->has($alias)) {
71 71
             $this->container->set($alias, buildProxy($fqcnOrAlias, $this->mockingStrategy));
72 72
         }
73 73
 
Please login to merge, or discard this patch.
src/Stub/Helper/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 require_once __DIR__ . '/const.php';
5 5
 require_once __DIR__ . '/isMethodName.php';
Please login to merge, or discard this patch.