Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/serializer/Mapping/Loader/AnnotationLoader.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 |
---|---|
23 * | 23 * |
24 * @author Kévin Dunglas <dunglas@gmail.com> | 24 * @author Kévin Dunglas <dunglas@gmail.com> |
25 */ | 25 */ |
26 class AnnotationLoader implements LoaderInterface | 26 class AnnotationLoader implements LoaderInterface |
27 { | 27 { |
28 /** | |
29 * @var Reader | |
30 */ | |
31 private $reader; | 28 private $reader; |
32 | 29 |
33 /** | |
34 * @param Reader $reader | |
35 */ | |
36 public function __construct(Reader $reader) | 30 public function __construct(Reader $reader) |
37 { | 31 { |
38 $this->reader = $reader; | 32 $this->reader = $reader; |
39 } | 33 } |
40 | 34 |