1
0
mirror of https://github.com/Intervention/image.git synced 2025-01-17 20:28:21 +01:00

Remote unused trait

This commit is contained in:
Oliver Vogel 2022-07-20 16:03:11 +02:00
parent b30fcc4a6a
commit 321ac466f3

View File

@ -1,14 +0,0 @@
<?php
namespace Intervention\Image\Traits;
use Intervention\Image\Geometry\Tools\Resizer;
use Intervention\Image\Interfaces\SizeInterface;
trait CanResizeGeometrically
{
public function resizeGeometrically(SizeInterface $size): Resizer
{
return new Resizer($size);
}
}