Skip to content

Commit

Permalink
Apply fixes from StyleCI (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Jan 24, 2017
1 parent 0e9948c commit a75f906
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/GlideImage.php
Expand Up @@ -26,7 +26,7 @@ public static function create(string $sourceFile) : GlideImage

public function setSourceFile(string $sourceFile) : GlideImage
{
if (!file_exists($sourceFile)) {
if (! file_exists($sourceFile)) {
throw new SourceFileDoesNotExist();
}

Expand Down
2 changes: 0 additions & 2 deletions src/GlideServiceProvider.php
Expand Up @@ -24,9 +24,7 @@ public function register()
$this->mergeConfigFrom(__DIR__.'/../config/laravel-glide.php', 'laravel-glide');

$this->app->bind('laravel-glide-image', function () {

return new GlideImage();

});
}

Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/GlideImageTest.php
Expand Up @@ -2,8 +2,8 @@

namespace Spatie\Glide\Test\Integration;

use Spatie\Glide\Exceptions\SourceFileDoesNotExist;
use Spatie\Glide\GlideImage;
use Spatie\Glide\Exceptions\SourceFileDoesNotExist;

class GlideImageTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/TestCase.php
Expand Up @@ -3,8 +3,8 @@
namespace Spatie\Glide\Test\Integration;

use File;
use Orchestra\Testbench\TestCase as Orchestra;
use Spatie\Glide\GlideServiceProvider;
use Orchestra\Testbench\TestCase as Orchestra;

abstract class TestCase extends Orchestra
{
Expand Down

0 comments on commit a75f906

Please sign in to comment.