Completed
Push — develop ( e382f7...b48d9b )
by Paul
02:10
created
src/Model/TraitModel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
      */
46 46
     public function hasAttribute(string $name): bool
47 47
     {
48
-        return $this->attributes->exists(function (AttributeModelInterface $attribute) use ($name) {
48
+        return $this->attributes->exists(function(AttributeModelInterface $attribute) use ($name) {
49 49
             return $attribute->getName() === $name;
50 50
         });
51 51
     }
Please login to merge, or discard this patch.
src/Model/PropertyTrait/ClassLikeTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,8 +42,8 @@
 block discarded – undo
42 42
      */
43 43
     public function countNotAbstractFunctions(): int
44 44
     {
45
-        return $this->functions->filter(function (FunctionModelInterface $function) {
46
-            return ! $function->isAbstract();
45
+        return $this->functions->filter(function(FunctionModelInterface $function) {
46
+            return !$function->isAbstract();
47 47
         })->count();
48 48
     }
49 49
 }
Please login to merge, or discard this patch.