Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
Merge pull request #23 from LaraChimp/analysis-9my31N
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
percymamedy authored Jul 2, 2020
2 parents a70ac35 + 4ab0c03 commit e83a805
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Concerns/IsRepositoryBootable.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace LaraChimp\MangoRepo\Concerns;

use Illuminate\Support\Collection;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
use LaraChimp\MangoRepo\Annotations\EloquentModel;
use LaraChimp\MangoRepo\Exceptions\InvalidModelException;
use LaraChimp\MangoRepo\Exceptions\UnspecifiedModelException;
Expand Down
2 changes: 1 addition & 1 deletion src/MangoRepoServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
namespace LaraChimp\MangoRepo;

use Illuminate\Support\ServiceProvider as BaseProvider;
use LaraChimp\PineAnnotations\Support\Reader\AnnotationsReader;
use LaraChimp\MangoRepo\Contracts\RepositoryInterface as RepositoryContract;
use LaraChimp\PineAnnotations\Support\Reader\AnnotationsReader;

class MangoRepoServiceProvider extends BaseProvider
{
Expand Down
4 changes: 2 additions & 2 deletions tests/AbstractTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

namespace LaraChimp\MangoRepo\Tests;

use Orchestra\Testbench\TestCase;
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
use LaraChimp\MangoRepo\MangoRepoServiceProvider;
use LaraChimp\PineAnnotations\PineAnnotationsServiceProvider;
use Orchestra\Testbench\TestCase;

abstract class AbstractTestCase extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Fixtures/Models/Scopes/IsActive.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace LaraChimp\MangoRepo\Tests\Fixtures\Models\Scopes;

use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Scope;
use Illuminate\Database\Eloquent\Builder;

class IsActive implements Scope
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Fixtures/Models/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace LaraChimp\MangoRepo\Tests\Fixtures\Models;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;

class User extends Model
{
Expand Down
2 changes: 1 addition & 1 deletion tests/TestRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
namespace LaraChimp\MangoRepo\Tests;

use Illuminate\Database\Eloquent\Collection;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use LaraChimp\MangoRepo\Tests\Fixtures\Models\Foo;
use LaraChimp\MangoRepo\Tests\Fixtures\Models\User;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use LaraChimp\MangoRepo\Tests\Fixtures\Repositories\FooRepository;
use LaraChimp\MangoRepo\Tests\Fixtures\Repositories\UserRepository;

Expand Down
2 changes: 1 addition & 1 deletion tests/TestRepositoryScopes.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace LaraChimp\MangoRepo\Tests;

use Illuminate\Foundation\Testing\DatabaseTransactions;
use LaraChimp\MangoRepo\Tests\Fixtures\Models\Bar;
use LaraChimp\MangoRepo\Tests\Fixtures\Models\User;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use LaraChimp\MangoRepo\Tests\Fixtures\Repositories\BarRepository;
use LaraChimp\MangoRepo\Tests\Fixtures\Repositories\FooRepository;
use LaraChimp\MangoRepo\Tests\Fixtures\Repositories\UserRepository;
Expand Down

0 comments on commit e83a805

Please sign in to comment.