Total Complexity | 5 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class DefaultOwnerProvider implements OwnerProviderInterface |
||
8 | { |
||
9 | /** @var TokenStorageInterface */ |
||
10 | private $tokenStorage; |
||
11 | |||
12 | /** |
||
13 | * DefaultOwnerProvider constructor. |
||
14 | * |
||
15 | * @param TokenStorageInterface|null $token |
||
16 | */ |
||
17 | public function __construct(TokenStorageInterface $tokenStorage = null) |
||
18 | { |
||
19 | $this->tokenStorage = $tokenStorage; |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * Return the current users user-id or a random string if no user is logged in. |
||
24 | * |
||
25 | * @return string |
||
26 | */ |
||
27 | public function getOwnerId() |
||
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