| Conditions | 3 |
| Paths | 4 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 39 | public function referenceName(): Name |
||
| 40 | { |
||
| 41 | $name = $this->isArray() ? $this->arrayTypeName() : $this->typeName(); |
||
| 42 | if ($name === null) { |
||
| 43 | throw new BadMethodCallException('This attribute is not a reference to a code definition'); |
||
| 44 | } |
||
| 45 | return $name; |
||
| 46 | } |
||
| 72 |