@@ -293,7 +293,6 @@ |
||
| 293 | 293 | * Forget a custom property using dot notation. |
| 294 | 294 | * |
| 295 | 295 | * @param string $name |
| 296 | - * @param mixed $value |
|
| 297 | 296 | * |
| 298 | 297 | * @deprecated Will be removed in the next major version in favor of |
| 299 | 298 | * changing `forgetCustomProperty` to use dot notation. |
@@ -2,14 +2,14 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Spatie\MediaLibrary; |
| 4 | 4 | |
| 5 | -use Illuminate\Support\Collection; |
|
| 6 | -use Spatie\MediaLibrary\Helpers\File; |
|
| 7 | 5 | use Illuminate\Database\Eloquent\Model; |
| 6 | +use Illuminate\Support\Collection; |
|
| 8 | 7 | use Spatie\MediaLibrary\Conversion\Conversion; |
| 9 | -use Spatie\MediaLibrary\ImageGenerators\FileTypes\Pdf; |
|
| 10 | -use Spatie\MediaLibrary\ImageGenerators\FileTypes\Svg; |
|
| 11 | 8 | use Spatie\MediaLibrary\Conversion\ConversionCollection; |
| 9 | +use Spatie\MediaLibrary\Helpers\File; |
|
| 12 | 10 | use Spatie\MediaLibrary\ImageGenerators\FileTypes\Image; |
| 11 | +use Spatie\MediaLibrary\ImageGenerators\FileTypes\Pdf; |
|
| 12 | +use Spatie\MediaLibrary\ImageGenerators\FileTypes\Svg; |
|
| 13 | 13 | use Spatie\MediaLibrary\ImageGenerators\FileTypes\Video; |
| 14 | 14 | use Spatie\MediaLibrary\UrlGenerator\UrlGeneratorFactory; |
| 15 | 15 | |