Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function buildSchema(Builder $builder) |
||
24 | { |
||
25 | $builder->add('allow_children', BooleanDescriptor::class, 'This class is allowed to have children'); |
||
26 | $builder->add('children_types', ArrayDescriptor::class, 'Valid children types'); |
||
27 | $builder->add('uris.create_child', UriCollectionDescriptor::class, 'Collection of URLs where children can be created (keys are the child types)'); |
||
28 | } |
||
29 | |||
38 |