| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function __construct( |
||
| 19 | Table $table, |
||
| 20 | Column $column, |
||
| 21 | NamingStrategyInterface $namingStrategy, |
||
| 22 | AnnotationParser $annotationParser, |
||
| 23 | AbstractBeanPropertyDescriptor $referencedPropertyDescriptor |
||
| 24 | ) { |
||
| 25 | parent::__construct($table, $column, $namingStrategy, $annotationParser); |
||
| 26 | $this->referencedPropertyDescriptor = $referencedPropertyDescriptor; |
||
| 27 | } |
||
| 46 |