| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | 2 | public function generate(Import $import): string |
|
| 20 | { |
||
| 21 | 2 | $output = 'use ' . ltrim($import->fullyQualifiedClassName(), '\\'); |
|
| 22 | |||
| 23 | 2 | if ($import->alias() !== null) { |
|
| 24 | 1 | $output .= ' as ' . $import->alias(); |
|
| 25 | } |
||
| 26 | |||
| 27 | 2 | $output .= ';'; |
|
| 28 | |||
| 29 | 2 | return rtrim($this->generateLine($output), static::END_OF_LINE); |
|
| 30 | } |
||
| 31 | } |
||
| 32 |