Completed
Pull Request — master (#37)
by Angelo
02:51
created
src/Moka/Generator/ProxyClassGenerator.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\Generator;
5 5
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
         $methodsArray = [];
30 30
 
31 31
         foreach ($methods as $method) {
32
-            if (!$method->isFinal() && !in_array($method->getName(), self::UNSAFE_METHODS, true)) {
32
+            if ( ! $method->isFinal() && ! in_array($method->getName(), self::UNSAFE_METHODS, true)) {
33 33
                 $methodsArray[] = ProxyMethodGenerator::generateMethodString($method);
34 34
             }
35 35
 
Please login to merge, or discard this patch.