Completed
Push — master ( 32fd8d...690881 )
by Alberto
19s
created
src/Moka/Stub/AbstractStub.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\Stub;
5 5
 
Please login to merge, or discard this patch.
src/Moka/Generator/Template/ClassTemplate.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\Generator\Template;
5 5
 
@@ -81,8 +81,8 @@  discard block
 block discarded – undo
81 81
 
82 82
         foreach ($methods as $method) {
83 83
             if (
84
-                !$method->isFinal() &&
85
-                !in_array($method->name, self::UNSAFE_METHODS, true)
84
+                ! $method->isFinal() &&
85
+                ! in_array($method->name, self::UNSAFE_METHODS, true)
86 86
             ) {
87 87
                 $methodsCode[] = MethodTemplate::generate($method);
88 88
             }
Please login to merge, or discard this patch.