Total Complexity | 1 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | abstract class AppletJoint extends ModuleJoint |
||
10 | { |
||
11 | use HasOptions; |
||
12 | |||
13 | /** |
||
14 | * Caption to display on the applet |
||
15 | */ |
||
16 | abstract public function caption(); |
||
17 | |||
18 | /** |
||
19 | * Description of the applet purpose |
||
20 | */ |
||
21 | abstract public function info(); |
||
22 | |||
23 | /** |
||
24 | * Define the full screen link |
||
25 | */ |
||
26 | public function go() {} |
||
27 | |||
28 | /** |
||
29 | * Define the applet body |
||
30 | * |
||
31 | * Use the $applet parameter to |
||
32 | * - add content to the applet $applet->add(['View']);, etc |
||
33 | * - add actions $applet->addAction('save')->link('some/link'); |
||
34 | */ |
||
35 | abstract public function body(Applet $applet, $options = []); |
||
36 | } |
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