1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-30 09:10:21 +02:00

Fix types in doc blocks

This commit is contained in:
Oliver Vogel
2024-01-29 19:03:25 +01:00
parent f6a0e6cc62
commit 19dad523fb
2 changed files with 2 additions and 2 deletions

View File

@@ -12,8 +12,8 @@ use Intervention\Image\Interfaces\ModifierInterface;
use Intervention\Image\Interfaces\SizeInterface;
/**
* @method SizeInterface getResizeSize(ImageInterface $image)
* @method SizeInterface getCropSize(ImageInterface $image)
* @method SizeInterface getResizeSize(SizeInterface $size)
*/
class CoverModifier extends DriverSpecialized implements ModifierInterface
{

View File

@@ -10,8 +10,8 @@ use Intervention\Image\Interfaces\ModifierInterface;
use Intervention\Image\Interfaces\SizeInterface;
/**
* @method SizeInterface getResizeSize(ImageInterface $image)
* @method SizeInterface getCropSize(ImageInterface $image)
* @method SizeInterface getResizeSize(SizeInterface $size)
*/
class CoverModifier extends DriverSpecialized implements ModifierInterface
{