1 | <?php namespace Cviebrock\EloquentSluggable\Engines; |
||
10 | class IdeographicEngine implements SlugifyInterface |
||
11 | { |
||
12 | |||
13 | |||
14 | /** |
||
15 | * For ideographic Engine, Return a unique Random string instead of Slug |
||
16 | * |
||
17 | * @param string $string |
||
18 | * @param string|array|null $options |
||
19 | * |
||
20 | * @return string |
||
21 | * |
||
22 | * @api |
||
23 | */ |
||
24 | public function slugify($string, $options = null) |
||
29 | } |
||
30 |