@@ -169,6 +169,7 @@ |
||
169 | 169 | * Return a class that has a `slugify()` method, used to convert |
170 | 170 | * strings into slugs. |
171 | 171 | * |
172 | + * @param string $attribute |
|
172 | 173 | * @return Slugify |
173 | 174 | */ |
174 | 175 | protected function getSlugEngine($attribute) |
@@ -1,7 +1,6 @@ |
||
1 | 1 | <?php namespace Cviebrock\EloquentSluggable\Services; |
2 | 2 | |
3 | 3 | use Cocur\Slugify\Slugify; |
4 | -use Illuminate\Database\Eloquent\Builder; |
|
5 | 4 | use Illuminate\Database\Eloquent\Model; |
6 | 5 | use Illuminate\Support\Collection; |
7 | 6 |