Completed
Push — master ( 77f1a4...b8ad13 )
by Angelo
15s
created
src/Moka/Tests/MokaPluginTestCase.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\Tests;
5 5
 
Please login to merge, or discard this patch.
src/Moka/Tests/MokaMockingStrategyTestCase.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\Tests;
5 5
 
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
 
147 147
     public function testMethodForward()
148 148
     {
149
-        if (!$this->methodName) {
149
+        if ( ! $this->methodName) {
150 150
             return;
151 151
         }
152 152
 
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
         ][random_int(0, 1)];
167 167
 
168 168
         $this->methodsWithValues = [
169
-            'isTrue' => !!random_int(0, 1),
169
+            'isTrue' => ! ! random_int(0, 1),
170 170
             'getInt' => mt_rand(),
171 171
             'withArgument' => mt_rand(),
172 172
             'throwException' => new \Exception('' . mt_rand())
Please login to merge, or discard this patch.