| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2.2109 |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | 1 | public function getFieldRenderer($graphicPrimitiveType) |
|
| 16 | { |
||
| 17 | switch ($graphicPrimitiveType) { |
||
| 18 | 1 | case GraphicPrimitiveType::TYPE_OUTLINE_BOX: |
|
| 19 | 1 | $class = FieldRendererOutlineBox::class; |
|
| 20 | 1 | break; |
|
| 21 | |||
| 22 | default: |
||
| 23 | throw new UnsupportedFieldTypeException($graphicPrimitiveType); |
||
| 24 | } |
||
| 25 | |||
| 26 | 1 | return $class::factory(); |
|
| 27 | } |
||
| 28 | } |
||
| 29 |