Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/serializer/Mapping/Loader/FileLoader.php @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children |
comparison
equal
deleted
inserted
replaced
13:5fb285c0d0e3 | 14:1fec387a4317 |
---|---|
18 * | 18 * |
19 * @author Kévin Dunglas <dunglas@gmail.com> | 19 * @author Kévin Dunglas <dunglas@gmail.com> |
20 */ | 20 */ |
21 abstract class FileLoader implements LoaderInterface | 21 abstract class FileLoader implements LoaderInterface |
22 { | 22 { |
23 /** | |
24 * @var string | |
25 */ | |
26 protected $file; | 23 protected $file; |
27 | 24 |
28 /** | 25 /** |
29 * Constructor. | |
30 * | |
31 * @param string $file The mapping file to load | 26 * @param string $file The mapping file to load |
32 * | 27 * |
33 * @throws MappingException if the mapping file does not exist or is not readable | 28 * @throws MappingException if the mapping file does not exist or is not readable |
34 */ | 29 */ |
35 public function __construct($file) | 30 public function __construct($file) |