| 1 | <?php |
||
| 15 | abstract class AbstractParser implements ParserInterface |
||
| 16 | { |
||
| 17 | |||
| 18 | /** |
||
| 19 | * String with configuration |
||
| 20 | * |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | protected $config; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Sets the string with configuration |
||
| 27 | * |
||
| 28 | * @param string $config |
||
| 29 | * @param string $filename |
||
| 30 | * |
||
| 31 | * @codeCoverageIgnore |
||
| 32 | */ |
||
| 33 | public function __construct($config, $filename = null) |
||
| 37 | } |
||
| 38 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.