Total Complexity | 6 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class plGraphvizProcessorOptions extends plProcessorOptions |
||
6 | { |
||
7 | public function __construct() |
||
8 | { |
||
9 | $this->properties = [ |
||
10 | 'style' => [ |
||
11 | 'data' => new HtmlLabelStyle(), |
||
12 | 'type' => self::STRING, |
||
13 | 'description' => 'Style to use for the dot creation' |
||
14 | ], |
||
15 | 'createAssociations' => [ |
||
16 | 'data' => true, |
||
17 | 'type' => self::BOOL, |
||
18 | '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 | } |
||
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.