| 1 | <?php |
||
| 18 | class CamelCaseNamingStrategy implements NamingStrategyInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var bool |
||
| 22 | */ |
||
| 23 | protected $ucFirst; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * CamelCaseNamingStrategy constructor. |
||
| 27 | * |
||
| 28 | * @param bool $ucFirst |
||
| 29 | */ |
||
| 30 | public function __construct($ucFirst = false) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | public function transformName($name) |
||
| 42 | } |
||
| 43 |