Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function changePassword(User $user, $password) |
||
15 | { |
||
16 | if (!$this->getPermission()) |
||
17 | throw new Exception("You should not pass!!!", 301); |
||
18 | |||
19 | $user->setHash( |
||
20 | $this->encoder->encodePassword($user, $password) |
||
21 | ); |
||
22 | |||
23 | $this->manager->persist($user); |
||
24 | $this->manager->flush(); |
||
25 | return $user; |
||
26 | } |
||
63 |
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