Completed
Push — develop ( a124ab...bd15d1 )
by Paul
02:05
created
template/partial/class/header.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 $namespace = $phpFile->getNamespaceString();
3
-$namespace = sprintf('namespace Test%s;', ($namespace === null? '' : '\\' . $namespace));
3
+$namespace = sprintf('namespace Test%s;', ($namespace === null ? '' : '\\' . $namespace));
4 4
 ?>
5 5
 <?= $namespace ?>
6 6
 
Please login to merge, or discard this patch.
src/Model/PropertyTrait/ClassLikeTrait.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      */
47 47
     public function hasMethod(string $name): bool
48 48
     {
49
-        return $this->functions->exists(function (FunctionModelInterface $function) use ($name) {
49
+        return $this->functions->exists(function(FunctionModelInterface $function) use ($name) {
50 50
             return $function->getName() === $name;
51 51
         });
52 52
     }
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public function countNotAbstractFunctions(): int
58 58
     {
59
-        return $this->functions->filter(function (FunctionModelInterface $function) {
60
-            return ! $function->isAbstract();
59
+        return $this->functions->filter(function(FunctionModelInterface $function) {
60
+            return !$function->isAbstract();
61 61
         })->count();
62 62
     }
63 63
 }
Please login to merge, or discard this patch.