Total Complexity | 11 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class TestService extends ServiceContainer |
||
17 | { |
||
18 | public function hello() |
||
19 | { |
||
20 | return 'Hello'; |
||
21 | } |
||
22 | |||
23 | public function calculate($var1, $operation, $var2) |
||
24 | { |
||
25 | if ($operation == 'plus' || $operation == '+') { |
||
26 | return $var1 + $var2; |
||
27 | } elseif ($operation == 'minus' || $operation == '-') { |
||
28 | return $var1 - $var2; |
||
29 | } elseif ($operation == 'multiply' || $operation == '*') { |
||
30 | return $var1 * $var2; |
||
31 | } elseif ($operation == 'divide' || $operation == '/') { |
||
32 | return $var1 / $var2; |
||
33 | } else { |
||
34 | return 'Invalid Operation'; |
||
35 | } |
||
36 | } |
||
37 | |||
38 | public function getRegisteredUsers() |
||
41 | } |
||
42 | } |
||
43 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths