Completed
Push — master ( 7ee214...32fd8d )
by Alberto
19s
created
src/Moka/Plugin/Prophecy/ProphecyPlugin.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\Plugin\Prophecy;
5 5
 
Please login to merge, or discard this patch.
src/Moka/Plugin/PluginInterface.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\Plugin;
5 5
 
Please login to merge, or discard this patch.
src/Moka/Plugin/PHPUnit/PHPUnitMockingStrategy.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\Plugin\PHPUnit;
5 5
 
Please login to merge, or discard this patch.
src/Moka/Plugin/Prophecy/Token/AbstractPriorityToken.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\Plugin\Prophecy\Token;
5 5
 
Please login to merge, or discard this patch.
src/Moka/Plugin/Prophecy/ProphecyMockingStrategy.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\Plugin\Prophecy;
5 5
 
Please login to merge, or discard this patch.
src/Moka/Plugin/PHPUnit/PHPUnitPlugin.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\Plugin\PHPUnit;
5 5
 
Please login to merge, or discard this patch.
src/Moka/Plugin/Mockery/MockeryPlugin.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\Plugin\Mockery;
5 5
 
Please login to merge, or discard this patch.
src/Moka/Plugin/PluginHelper.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\Plugin;
5 5
 
@@ -27,8 +27,8 @@  discard block
 block discarded – undo
27 27
         $pluginFQCN = self::generateFQCN($pluginName);
28 28
 
29 29
         if (
30
-            !class_exists($pluginFQCN) ||
31
-            !in_array(PluginInterface::class, class_implements($pluginFQCN), true)
30
+            ! class_exists($pluginFQCN) ||
31
+            ! in_array(PluginInterface::class, class_implements($pluginFQCN), true)
32 32
         ) {
33 33
             throw new NotImplementedException(
34 34
                 sprintf(
Please login to merge, or discard this patch.
src/Moka/Plugin/Prophecy/Token/MaxPriorityToken.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\Plugin\Prophecy\Token;
5 5
 
Please login to merge, or discard this patch.