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