| 1 | <?php |
||
| 17 | abstract class AbstractNamingStrategy implements NamingStrategyInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var string[] |
||
| 21 | */ |
||
| 22 | private $names = []; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * {@inheritdoc} |
||
| 26 | */ |
||
| 27 | 268 | public function convert($name) |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @param string $name |
||
| 36 | * |
||
| 37 | * @return string |
||
| 38 | */ |
||
| 39 | abstract protected function doConvert($name); |
||
| 40 | } |
||
| 41 |