Completed
Push — master ( 92cca6...dbd889 )
by Alberto
13s
created
src/Moka/Traits/MokaCleanerTrait.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
 namespace Moka\Traits;
5 5
 
Please login to merge, or discard this patch.
src/Moka/Exception/MockNotCreatedException.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
 namespace Moka\Exception;
5 5
 
Please login to merge, or discard this patch.
src/Moka/Factory/ProxyFactory.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
 namespace Moka\Factory;
5 5
 
Please login to merge, or discard this patch.
src/Moka/Traits/MokaTrait.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
 namespace Moka\Traits;
5 5
 
Please login to merge, or discard this patch.
src/Moka/Exception/InvalidIdentifierException.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
 namespace Moka\Exception;
5 5
 
Please login to merge, or discard this patch.
src/Moka/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
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     {
57 57
         $alias = $alias ?: $fqcn;
58 58
 
59
-        if (!$this->container->has($alias)) {
59
+        if ( ! $this->container->has($alias)) {
60 60
             $this->container->set($alias, $this->buildProxy($fqcn));
61 61
         }
62 62
 
Please login to merge, or discard this patch.
src/Moka/Proxy/ProxyContainer.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\Proxy;
5 5
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      */
34 34
     public function get($id): Proxy
35 35
     {
36
-        if (!$this->has($id)) {
36
+        if ( ! $this->has($id)) {
37 37
             throw new InvalidIdentifierException(sprintf('The mock object with id "%s" is not found', $id));
38 38
         }
39 39
 
Please login to merge, or discard this patch.
src/Moka/Factory/StubFactory.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
 namespace Moka\Factory;
5 5
 
Please login to merge, or discard this patch.
src/Moka/Exception/InvalidArgumentException.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
 namespace Moka\Exception;
5 5
 
Please login to merge, or discard this patch.