Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | abstract class AbstractFooType extends AbstractAnnotatedObjectType |
||
18 | { |
||
19 | public function __construct(RegistryInterface $registry) |
||
20 | { |
||
21 | parent::__construct($registry); |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @Field() |
||
26 | * @param TestObject $test |
||
27 | * @param string $param |
||
28 | * @return string |
||
29 | */ |
||
30 | public function customField(TestObject $test, string $param = 'foo'): string |
||
33 | } |
||
34 | } |
||
35 |