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