Conditions | 7 |
Paths | 1 |
Total Lines | 28 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function __invoke() |
||
16 | { |
||
17 | return function ($callback): bool { |
||
18 | if (is_string($callback) || is_array($callback)) { |
||
19 | $validationRule = $callback; |
||
20 | |||
21 | $callback = function ($item) use ($validationRule) { |
||
22 | if (! is_array($item)) { |
||
23 | $item = ['default' => $item]; |
||
24 | } |
||
25 | |||
26 | if (! is_array($validationRule)) { |
||
27 | $validationRule = ['default' => $validationRule]; |
||
|
|||
28 | } |
||
29 | |||
30 | return app('validator')->make($item, $validationRule)->passes(); |
||
31 | }; |
||
32 | } |
||
33 | |||
34 | foreach ($this->items as $item) { |
||
35 | if (! $callback($item)) { |
||
36 | return false; |
||
37 | } |
||
38 | } |
||
39 | |||
40 | return true; |
||
41 | }; |
||
42 | } |
||
43 | } |
||
44 |
It seems like you are assigning to a variable which was imported through a
use
statement which was not imported by reference.For clarity, we suggest to use a different name or import by reference depending on whether you would like to have the change visibile in outer-scope.
Change not visible in outer-scope
Change visible in outer-scope