Total Complexity | 6 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 50% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class plGraphvizProcessorOptions extends plProcessorOptions |
||
6 | { |
||
7 | 6 | public function __construct() |
|
8 | { |
||
9 | 6 | $this->properties = [ |
|
10 | 6 | 'style' => [ |
|
11 | 6 | 'data' => new HtmlLabelStyle(), |
|
12 | 6 | 'type' => self::STRING, |
|
13 | 6 | 'description' => 'Style to use for the dot creation' |
|
14 | ], |
||
15 | 'createAssociations' => [ |
||
16 | 'data' => true, |
||
17 | 6 | 'type' => self::BOOL, |
|
18 | 6 | 'description' => 'Create connections between classes that include each other. (This information can only be extracted if it is present in docblock comments)' |
|
19 | ], |
||
20 | ]; |
||
21 | 6 | } |
|
22 | |||
23 | public function __set($key, $val) |
||
34 | } |
||
35 | |||
38 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.