1 | <?php |
||
14 | abstract class AbstractFileParser implements FileParserInterface |
||
15 | { |
||
16 | |||
17 | /** |
||
18 | * Path to the config file |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $path; |
||
23 | |||
24 | /** |
||
25 | * Sets the path to the config file |
||
26 | * |
||
27 | * @param string $path |
||
28 | * |
||
29 | * @codeCoverageIgnore |
||
30 | */ |
||
31 | public function __construct($path) |
||
35 | } |
||
36 |