Passed
Pull Request — master (#34)
by
unknown
07:19
created
src/Violation/Filter/DependencyFilter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     {
51 51
         return array_reduce(
52 52
             array_map(
53
-                function (
53
+                function(
54 54
                     array $dependent
55 55
                 ) use ($violation): ViolationInterface {
56 56
                     /** @var PackageInterface $package */
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
                 },
70 70
                 $this->getDependencies($violation->getPackage()->getName())
71 71
             ),
72
-            function (bool $carry, ViolationInterface $violation): bool {
72
+            function(bool $carry, ViolationInterface $violation): bool {
73 73
                 return $carry || $this->filter->__invoke($violation);
74 74
             },
75 75
             false
Please login to merge, or discard this patch.