Skip to content

Commit

Permalink
Php cs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chelout committed Apr 20, 2018
1 parent 743e1f2 commit ff1e11e
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/BelongsTo.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Chelout\RelationshipEvents;

use Chelout\RelationshipEvents\Traits\HasEventDispatcher;
use Chelout\RelationshipEvents\Contracts\EventDispatcher;
use Chelout\RelationshipEvents\Traits\HasEventDispatcher;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo as BelongsToBase;

Expand Down
2 changes: 1 addition & 1 deletion src/BelongsToMany.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Chelout\RelationshipEvents;

use Chelout\RelationshipEvents\Traits\HasEventDispatcher;
use Chelout\RelationshipEvents\Contracts\EventDispatcher;
use Chelout\RelationshipEvents\Traits\HasEventDispatcher;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsToMany as BelongsToManyBase;

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

namespace Chelout\RelationshipEvents;

use Chelout\RelationshipEvents\Contracts\EventDispatcher;
use Chelout\RelationshipEvents\Traits\HasEventDispatcher;
use Chelout\RelationshipEvents\Traits\HasOneOrManyMethods;
use Chelout\RelationshipEvents\Contracts\EventDispatcher;
use Illuminate\Database\Eloquent\Relations\HasMany as HasManyBase;

class HasMany extends HasManyBase implements EventDispatcher
Expand Down
2 changes: 1 addition & 1 deletion src/HasOne.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Chelout\RelationshipEvents;

use Chelout\RelationshipEvents\Contracts\EventDispatcher;
use Chelout\RelationshipEvents\Traits\HasEventDispatcher;
use Chelout\RelationshipEvents\Traits\HasOneOrManyMethods;
use Chelout\RelationshipEvents\Contracts\EventDispatcher;
use Illuminate\Database\Eloquent\Relations\HasOne as HasOneBase;

class HasOne extends HasOneBase implements EventDispatcher
Expand Down
2 changes: 1 addition & 1 deletion src/MorphMany.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Chelout\RelationshipEvents;

use Chelout\RelationshipEvents\Contracts\EventDispatcher;
use Chelout\RelationshipEvents\Traits\HasEventDispatcher;
use Chelout\RelationshipEvents\Traits\HasOneOrManyMethods;
use Chelout\RelationshipEvents\Contracts\EventDispatcher;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\MorphMany as MorphManyBase;

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

namespace Chelout\RelationshipEvents;

use Chelout\RelationshipEvents\Contracts\EventDispatcher;
use Chelout\RelationshipEvents\Traits\HasEventDispatcher;
use Chelout\RelationshipEvents\Traits\HasOneOrManyMethods;
use Chelout\RelationshipEvents\Contracts\EventDispatcher;
use Illuminate\Database\Eloquent\Relations\MorphOne as MorphOneBase;

class MorphOne extends MorphOneBase implements EventDispatcher
Expand Down
2 changes: 1 addition & 1 deletion src/MorphTo.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Chelout\RelationshipEvents;

use Chelout\RelationshipEvents\Traits\HasEventDispatcher;
use Chelout\RelationshipEvents\Contracts\EventDispatcher;
use Chelout\RelationshipEvents\Traits\HasEventDispatcher;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\MorphTo as MorphToBase;

Expand Down
2 changes: 1 addition & 1 deletion src/MorphToMany.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Chelout\RelationshipEvents;

use Chelout\RelationshipEvents\Traits\HasEventDispatcher;
use Chelout\RelationshipEvents\Contracts\EventDispatcher;
use Chelout\RelationshipEvents\Traits\HasEventDispatcher;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\MorphToMany as MorphToManyBase;

Expand Down
2 changes: 1 addition & 1 deletion src/MorphedByMany.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Chelout\RelationshipEvents;

use Chelout\RelationshipEvents\Traits\HasEventDispatcher;
use Chelout\RelationshipEvents\Contracts\EventDispatcher;
use Chelout\RelationshipEvents\Traits\HasEventDispatcher;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\MorphToMany as MorphToManyBase;

Expand Down

0 comments on commit ff1e11e

Please sign in to comment.