Total Complexity | 3 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class mcp_controller |
||
13 | { |
||
14 | /** @var \phpbb\language\language */ |
||
15 | protected $language; |
||
16 | |||
17 | /** @var \blitze\content\services\actions\action_handler */ |
||
18 | protected $action_handler; |
||
19 | |||
20 | /** |
||
21 | * Constructor |
||
22 | * |
||
23 | * @param \phpbb\language\language $language Language object |
||
24 | * @param \blitze\content\services\actions\action_handler $action_handler Handles actions |
||
25 | */ |
||
26 | public function __construct(\phpbb\language\language $language, \blitze\content\services\actions\action_handler $action_handler) |
||
27 | { |
||
28 | $this->language = $language; |
||
29 | $this->action_handler = $action_handler; |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * Display list of topics for content type |
||
34 | * |
||
35 | * @param string $action |
||
36 | * @param string $base_url |
||
37 | * @return void |
||
38 | */ |
||
39 | public function handle($action, $base_url) |
||
52 | } |
||
53 | } |
||
55 |
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