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