Skip to content

Commit

Permalink
Merge branch '4.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
crynobone committed Nov 13, 2019
2 parents d353dc4 + 6747c72 commit 7933bcf
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ return PhpCsFixer\Config::create()
'no_empty_comment' => false,
'no_extra_consecutive_blank_lines' => false,
'not_operator_with_successor_space' => true,
'ordered_imports' => ['sortAlgorithm' => 'length'],
'ordered_imports' => ['sortAlgorithm' => 'alpha'],
'phpdoc_align' => false,
'phpdoc_no_empty_return' => false,
'phpdoc_order' => true,
Expand Down
2 changes: 1 addition & 1 deletion src/ImagineManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Orchestra\Imagine;

use Imagine\Gd\Imagine as Gd;
use Illuminate\Support\Manager;
use Imagine\Gd\Imagine as Gd;
use Imagine\Gmagick\Imagine as Gmagick;
use Imagine\Imagick\Imagine as Imagick;
use Orchestra\Support\Concerns\WithConfiguration;
Expand Down
4 changes: 2 additions & 2 deletions src/ImagineServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Orchestra\Imagine;

use Imagine\Image\ImagineInterface;
use Illuminate\Contracts\Container\Container;
use Orchestra\Support\Providers\ServiceProvider;
use Illuminate\Contracts\Support\DeferrableProvider;
use Imagine\Image\ImagineInterface;
use Orchestra\Support\Providers\ServiceProvider;

class ImagineServiceProvider extends ServiceProvider implements DeferrableProvider
{
Expand Down
2 changes: 1 addition & 1 deletion src/Jobs/Generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Orchestra\Imagine\Jobs;

use Orchestra\Support\Str;
use Illuminate\Support\Arr;
use Imagine\Image\ImageInterface;
use Imagine\Image\ImagineInterface;
use Orchestra\Support\Str;

abstract class Generator extends Job
{
Expand Down
4 changes: 2 additions & 2 deletions tests/ImagineServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Orchestra\Imagine\Tests;

use Mockery as m;
use PHPUnit\Framework\TestCase;
use Illuminate\Container\Container;
use Mockery as m;
use Orchestra\Imagine\ImagineServiceProvider;
use PHPUnit\Framework\TestCase;

class ImagineServiceProviderTest extends TestCase
{
Expand Down

0 comments on commit 7933bcf

Please sign in to comment.