Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissm79 authored and StyleCIBot committed May 30, 2019
1 parent e3ac0c2 commit 6c80d55
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Schema/Directives/DeleteDirective.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function (string $id): string {
$model = $modelClass::find($idOrIds);

if (! $model) {
return null;
return;
}

if ($model instanceof Model) {
Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/Defer/DeferDBTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

namespace Tests\Integration\Defer;

use Illuminate\Support\Collection as BaseCollection;
use Tests\DBTestCase;
use Illuminate\Support\Arr;
use Tests\Utils\Models\User;
use Tests\Utils\Models\Company;
use Illuminate\Support\Facades\DB;
use Illuminate\Database\Eloquent\Collection;
use Nuwave\Lighthouse\Defer\DeferServiceProvider;
use Illuminate\Support\Collection as BaseCollection;

class DeferDBTest extends DBTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/Schema/Directives/EventDirectiveTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class CompanyWasCreatedEvent
public $company;

/**
* CompanyWasCreatedEvent constructor
* CompanyWasCreatedEvent constructor.
* @param \Tests\Utils\Models\Company $company
* @return void
*/
Expand Down

0 comments on commit 6c80d55

Please sign in to comment.