public function __construct(Reader $annotationReader, $messagePopulator)
 {
     parent::__construct($annotationReader);
     $this->messagePopulator = $messagePopulator;
 }
Beispiel #2
0
 public function __construct()
 {
     parent::__construct(new AnnotationReader());
 }
Beispiel #3
0
 public function __construct(Reader $annotationReader, SegmentPopulator $segmentPopulator, MappingLoader $mappingLoader)
 {
     parent::__construct($annotationReader);
     $this->segmentPopulator = $segmentPopulator;
     $this->mappingLoader = $mappingLoader;
 }