Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function findAllUserArchived(User $current_account, bool $archived = false): array |
||
16 | { |
||
17 | $query = $this->getEntityManager()->createQuery("SELECT fu FROM RibsAdminBundle:FosUser fu |
||
18 | JOIN RibsAdminBundle:User u WITH fu.user = u |
||
19 | WHERE u.archived = :archived and u != :current_account |
||
20 | ") |
||
21 | ->setParameter("archived", $archived) |
||
22 | ->setParameter("current_account", $current_account); |
||
23 | |||
24 | return $query->getResult(); |
||
25 | } |
||
26 | } |
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