1
0
mirror of https://github.com/Intervention/image.git synced 2025-09-01 18:02:45 +02:00

Fix: Remove unused imports

This commit is contained in:
Andreas Möller
2016-01-02 14:48:56 +01:00
parent e6acb1609c
commit 5baeb14611
9 changed files with 0 additions and 10 deletions

View File

@@ -2,7 +2,6 @@
namespace Intervention\Image\Gd\Commands;
use \Intervention\Image\Point;
use \Intervention\Image\Size;
class FitCommand extends ResizeCommand

View File

@@ -2,7 +2,6 @@
namespace Intervention\Image\Gd\Commands;
use Intervention\Image\Gd\Color;
class LimitColorsCommand extends \Intervention\Image\Commands\AbstractCommand
{

View File

@@ -2,8 +2,6 @@
namespace Intervention\Image\Gd\Commands;
use \Intervention\Image\Point;
use \Intervention\Image\Size;
class ResizeCanvasCommand extends \Intervention\Image\Commands\AbstractCommand
{

View File

@@ -3,7 +3,6 @@
namespace Intervention\Image\Gd;
use \Intervention\Image\Image;
use \Intervention\Image\Size;
class Decoder extends \Intervention\Image\AbstractDecoder
{

View File

@@ -2,7 +2,6 @@
namespace Intervention\Image\Gd;
use \Intervention\Image\Size;
class Driver extends \Intervention\Image\AbstractDriver
{

View File

@@ -3,7 +3,6 @@
namespace Intervention\Image;
use Illuminate\Support\ServiceProvider;
use Illuminate\Http\Response as IlluminateResponse;
class ImageServiceProviderLaravel5 extends ServiceProvider
{

View File

@@ -3,7 +3,6 @@
namespace Intervention\Image\Imagick;
use \Intervention\Image\Image;
use \Intervention\Image\Size;
class Decoder extends \Intervention\Image\AbstractDecoder
{

View File

@@ -2,7 +2,6 @@
namespace Intervention\Image\Imagick;
use \Intervention\Image\Size;
class Driver extends \Intervention\Image\AbstractDriver
{

View File

@@ -1,6 +1,5 @@
<?php
use \Intervention\Image\AbstractDecoder;
class AbstractDecoderTest extends PHPUnit_Framework_TestCase
{