Total Complexity | 1 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
26 | abstract class TicketStore |
||
27 | { |
||
28 | /** |
||
29 | * @param \SimpleSAML\Configuration $config |
||
30 | */ |
||
31 | public function __construct(\SimpleSAML\Configuration $config) |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * @param string $ticketId |
||
37 | * @return array|null |
||
38 | */ |
||
39 | abstract public function getTicket($ticketId); |
||
40 | |||
41 | /** |
||
42 | * @param array $ticket |
||
43 | */ |
||
44 | abstract public function addTicket(array $ticket); |
||
45 | |||
46 | /** |
||
47 | * @param string $ticketId |
||
48 | */ |
||
49 | abstract public function deleteTicket($ticketId); |
||
50 | } |
||
51 |
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