Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class maskPosition extends types { |
||
|
|||
15 | /** Keep all of properties which has sub properties */ |
||
16 | private const subs = []; |
||
17 | |||
18 | /** |
||
19 | * The part of the face relative to which the mask should be placed. One of “forehead”, “eyes”, |
||
20 | * “mouth”, or “chin”. |
||
21 | */ |
||
22 | public string $point; |
||
23 | |||
24 | /** |
||
25 | * Shift by X-axis measured in widths of the mask scaled to the face size, from left to right. For example, |
||
26 | * choosing -1.0 will place mask just to the left of the default mask position. |
||
27 | */ |
||
28 | public float $x_shift; |
||
29 | |||
30 | /** |
||
31 | * Shift by Y-axis measured in heights of the mask scaled to the face size, from top to bottom. For example, 1.0 |
||
32 | * will place the mask just below the default mask position. |
||
33 | */ |
||
34 | public float $y_shift; |
||
35 | |||
36 | /** Mask scaling coefficient. For example, 2.0 means double size. */ |
||
37 | public float $scale; |
||
38 | |||
39 | |||
40 | public function __construct(stdClass|null $object = null) { |
||
46 |
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