Completed
Push — master ( 92cca6...dbd889 )
by Alberto
13s
created
src/Moka/Strategy/MockeryMockingStrategy.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\Strategy;
5 5
 
Please login to merge, or discard this patch.
src/Moka/Moka.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;
5 5
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      */
53 53
     public static function __callStatic($name, $arguments)
54 54
     {
55
-        if (!isset(static::STRATEGIES[$name])) {
55
+        if ( ! isset(static::STRATEGIES[$name])) {
56 56
             throw new NotImplementedException(
57 57
                 sprintf(
58 58
                     'Mocking strategy "%s" does not exist',
Please login to merge, or discard this patch.
src/Moka/Strategy/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\Strategy;
5 5
 
Please login to merge, or discard this patch.