Total Complexity | 4 |
Total Lines | 55 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class Client implements ClientEntityInterface |
||
10 | { |
||
11 | /** @var string */ |
||
12 | protected $identifier; |
||
13 | |||
14 | /** @var string */ |
||
15 | protected $name; |
||
16 | |||
17 | /** @var string */ |
||
18 | protected $redirectUri; |
||
19 | |||
20 | /** |
||
21 | * Client constructor. |
||
22 | * |
||
23 | * @param string $identifier |
||
24 | * @param string $name |
||
25 | * @param string $redirectUri |
||
26 | */ |
||
27 | public function __construct(string $identifier, string $name, string $redirectUri) |
||
28 | { |
||
29 | $this->identifier = $identifier; |
||
30 | $this->name = $name; |
||
31 | $this->redirectUri = $redirectUri; |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * Get the client's identifier. |
||
36 | * |
||
37 | * @return string |
||
38 | */ |
||
39 | public function getIdentifier() |
||
42 | } |
||
43 | |||
44 | /** |
||
45 | * Get the client's name. |
||
46 | * |
||
47 | * @return string |
||
48 | */ |
||
49 | public function getName() |
||
52 | } |
||
53 | |||
54 | /** |
||
55 | * Returns the registered redirect URI (as a string). |
||
56 | * |
||
57 | * Alternatively return an indexed array of redirect URIs. |
||
58 | * |
||
59 | * @return string|string[] |
||
60 | */ |
||
61 | public function getRedirectUri() |
||
64 | } |
||
65 | } |
||
66 |
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