Total Complexity | 3 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class AfterpayToUtilTextBridge implements AfterpayToUtilTextInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var \Spryker\Service\UtilText\UtilTextServiceInterface |
||
14 | */ |
||
15 | protected $utilTextService; |
||
16 | |||
17 | /** |
||
18 | * @param \Spryker\Service\UtilText\UtilTextServiceInterface $utilTextService |
||
19 | */ |
||
20 | public function __construct($utilTextService) |
||
21 | { |
||
22 | $this->utilTextService = $utilTextService; |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @param string $string |
||
27 | * @param string $separator |
||
28 | * @param bool $upperCaseFirst |
||
29 | * |
||
30 | * @return string |
||
31 | */ |
||
32 | public function separatorToCamelCase($string, $separator = '-', $upperCaseFirst = false) |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @param string $string |
||
39 | * @param string $separator |
||
40 | * |
||
41 | * @return string |
||
42 | */ |
||
43 | public function camelCaseToSeparator($string, $separator = '-') |
||
48 |