1 | <?php |
||
15 | class Layouts |
||
16 | { |
||
17 | /** |
||
18 | * @var array |
||
19 | */ |
||
20 | public $versions; |
||
21 | |||
22 | |||
23 | /** |
||
24 | * Constructor |
||
25 | * @param string $config |
||
26 | */ |
||
27 | public function __construct($config) |
||
36 | |||
37 | /** |
||
38 | * Locate folder indicated in config and read each xsd |
||
39 | * extract version and save in property |
||
40 | * |
||
41 | * @param string $schemasFolder |
||
42 | */ |
||
43 | protected function read($schemasFolder) |
||
53 | } |
||
54 |