Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/validator/Mapping/Loader/FilesLoader.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 4c8ae668cc8c |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
39 * | 39 * |
40 * @return LoaderInterface[] The metadata loaders | 40 * @return LoaderInterface[] The metadata loaders |
41 */ | 41 */ |
42 protected function getFileLoaders($paths) | 42 protected function getFileLoaders($paths) |
43 { | 43 { |
44 $loaders = array(); | 44 $loaders = []; |
45 | 45 |
46 foreach ($paths as $path) { | 46 foreach ($paths as $path) { |
47 $loaders[] = $this->getFileLoaderInstance($path); | 47 $loaders[] = $this->getFileLoaderInstance($path); |
48 } | 48 } |
49 | 49 |