Skip to content

Commit

Permalink
one more try at styleci
Browse files Browse the repository at this point in the history
  • Loading branch information
browner12 committed Sep 14, 2017
1 parent 3c3c877 commit 98ee9ba
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/Illuminate/Database/Eloquent/Model.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@

namespace Illuminate\Database\Eloquent;

use Exception;
use ArrayAccess;
use JsonSerializable;
use BadMethodCallException;
use Exception;
use Illuminate\Contracts\Queue\QueueableCollection;
use Illuminate\Contracts\Queue\QueueableEntity;
use Illuminate\Contracts\Routing\UrlRoutable;
use Illuminate\Contracts\Support\Arrayable;
use Illuminate\Support\Arr;
use Illuminate\Support\Str;
use Illuminate\Contracts\Support\Jsonable;
use Illuminate\Database\ConnectionResolverInterface as Resolver;
use Illuminate\Contracts\Support\Arrayable;
use Illuminate\Contracts\Routing\UrlRoutable;
use Illuminate\Contracts\Queue\QueueableEntity;
use Illuminate\Database\Eloquent\Relations\Pivot;
use Illuminate\Contracts\Queue\QueueableCollection;
use Illuminate\Database\Query\Builder as QueryBuilder;
use Illuminate\Support\Arr;
use Illuminate\Support\Str;
use JsonSerializable;
use Illuminate\Database\ConnectionResolverInterface as Resolver;

/**
* @mixin \Illuminate\Database\Eloquent\Builder
Expand Down Expand Up @@ -1265,13 +1265,13 @@ public function getQueueableRelations()

if ($relation instanceof QueueableCollection) {
foreach ($relation->getQueueableRelations() as $collectionKey => $collectionValue) {
$relations[] = $key . '.' . $collectionKey;
$relations[] = $key.'.'.$collectionKey;
}
}

if ($relation instanceof QueueableEntity) {
foreach ($relation->getQueueableRelations() as $entityKey => $entityValue) {
$relations[] = $key . '.' . $entityValue;
$relations[] = $key.'.'.$entityValue;
}
}
}
Expand Down

0 comments on commit 98ee9ba

Please sign in to comment.