Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | protected function __construct($filename) |
||
11 | { |
||
12 | parent::__construct($filename); |
||
13 | $this->parseReservedKeywords(parent::getDefaultConfigurationPath()); |
||
1 ignored issue
–
show
|
|||
14 | } |
||
15 | /** |
||
32 |
This check looks for a call to a parent method whose name is different than the method from which it is called.
Consider the following code:
The
getFirstName()
method in theSon
calls the wrong method in the parent class.