1 | <?php |
||
12 | class DataCollectorExtension extends AbstractExtension |
||
13 | { |
||
14 | /** |
||
15 | * @var FileLocatorInterface |
||
16 | */ |
||
17 | protected $fileLocator; |
||
18 | |||
19 | /** |
||
20 | * @param FileLocatorInterface $fileLocator |
||
21 | */ |
||
22 | 1 | public function __construct(FileLocatorInterface $fileLocator) |
|
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | public function getFunctions() |
||
36 | |||
37 | /** |
||
38 | * @param string $schemaLocation |
||
39 | * @return bool |
||
40 | */ |
||
41 | public function schemaFileExists(string $schemaLocation): bool |
||
51 | } |
||
52 |