| 1 | <?php |
||
| 17 | class SimpleNamingStrategy extends Strategy |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * SimpleNamingStrategy constructor. |
||
| 21 | */ |
||
| 22 | public function __construct() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param TypeNameInterface $name |
||
| 31 | * @param iterable $arguments |
||
| 32 | * @return string |
||
| 33 | */ |
||
| 34 | private function format(TypeNameInterface $name, iterable $arguments): string |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @param TypeNameInterface $name |
||
| 45 | * @return string |
||
| 46 | */ |
||
| 47 | private function formatName(TypeNameInterface $name): string |
||
| 53 | } |
||
| 54 |