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