| 1 | <?php |
||
| 17 | class AbstractSeparatorNamingStrategy extends AbstractNamingStrategy |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | private $separator; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param string $separator |
||
| 26 | */ |
||
| 27 | 108 | public function __construct($separator) |
|
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | 120 | protected function doConvert($name) |
|
| 42 | } |
||
| 43 |