| 1 | <?php |
||
| 5 | abstract class AbstractMetadatas implements \IteratorAggregate |
||
| 6 | { |
||
| 7 | protected $annotationReader; |
||
| 8 | protected $metadatas = []; |
||
| 9 | |||
| 10 | public function get($key) |
||
| 16 | |||
| 17 | public function getByPropertyName($name) |
||
| 25 | |||
| 26 | public function getIterator() |
||
| 30 | |||
| 31 | protected function load($class) |
||
| 41 | |||
| 42 | abstract protected function generateMetadata(\ReflectionProperty $refProp, $annot); |
||
| 43 | } |
||
| 44 |