Total Complexity | 2 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class CocurSymfonySluggerBridge implements SluggerInterface |
||
14 | { |
||
15 | private SlugifyInterface $slugger; |
||
16 | |||
17 | public function __construct(SlugifyInterface $slugger) |
||
18 | { |
||
19 | $this->slugger = $slugger; |
||
20 | } |
||
21 | |||
22 | public function slug(string $string, string $separator = '-', ?string $locale = null): AbstractUnicodeString |
||
25 | } |
||
26 | } |
||
27 |