| 1 | <?php |
||
| 12 | trait Override |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @param string $string |
||
| 16 | * @param string|null $type |
||
| 17 | * @return Node |
||
| 18 | */ |
||
| 19 | public function data($string, $type = null) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param string|null $string |
||
| 27 | * @return Node |
||
| 28 | */ |
||
| 29 | public function acceptcharset($string = null) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param null $value |
||
| 36 | * @return Node |
||
| 37 | */ |
||
| 38 | public function contentAttribute($value = null) |
||
| 42 | } |
||
| 43 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.