| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class ArrayDoc extends CollectionDoc |
||
| 8 | { |
||
| 9 | /** @var TypeDoc|null */ |
||
| 10 | private $itemValidation = null; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param TypeDoc $itemValidation |
||
| 14 | * |
||
| 15 | * @return ArrayDoc |
||
| 16 | */ |
||
| 17 | public function setItemValidation(TypeDoc $itemValidation) : ArrayDoc |
||
| 18 | { |
||
| 19 | $this->itemValidation = $itemValidation; |
||
| 20 | |||
| 21 | return $this; |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @return TypeDoc|null |
||
| 26 | */ |
||
| 27 | public function getItemValidation() |
||
| 30 | } |
||
| 31 | } |
||
| 32 |