Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
34 | public function __construct( |
||
35 | FileResolverInterface $fileResolver, |
||
36 | Converter $converter, |
||
37 | SchemaLocator $schemaLocator, |
||
38 | ValidationStateInterface $validationState, |
||
39 | $fileName = self::XML_FILE_NAME |
||
40 | ) { |
||
41 | parent::__construct( |
||
42 | $fileResolver, |
||
43 | $converter, |
||
44 | $schemaLocator, |
||
45 | $validationState, |
||
46 | $fileName, |
||
47 | self::ID_ATTRIBUTES |
||
48 | ); |
||
49 | } |
||
50 | } |
||
51 |