Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | * @return array Collection of YAML site definition files |
||
34 | */ |
||
35 | public function get_collection() |
||
36 | { |
||
37 | $finder = $this->extension_manager->get_finder(); |
||
38 | |||
39 | return $finder |
||
40 | ->set_extensions(array('phpbb/mediaembed')) |
||
41 | ->extension_suffix('.yml') |
||
42 | ->extension_directory('collection/sites') |
||
43 | ->get_files(); |
||
46 |