Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class AjaxSlugify extends AjaxController |
||
12 | { |
||
13 | use StringFunctions; |
||
14 | |||
15 | private $slugify; |
||
16 | |||
17 | public function __construct(Container $container) |
||
18 | { |
||
19 | parent::__construct($container); |
||
20 | $this->slugify = new Slugify(); |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @return string slugified string |
||
25 | * @throws JsonException |
||
26 | */ |
||
27 | public function slugifyString() |
||
36 | } |
||
37 | } |