Skip to content

Commit

Permalink
Merge pull request #2 from apichef/analysis-RvE9nD
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
milroyfraser committed Feb 12, 2020
2 parents bd74bec + 009a2ec commit 8e3181e
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion tests/Queries/PostListQuery.php
Expand Up @@ -2,9 +2,9 @@

namespace ApiChef\RequestToEloquent\Queries;

use ApiChef\RequestToEloquent\Dummy\Post;
use ApiChef\RequestToEloquent\QueryBuilderAbstract;
use Illuminate\Database\Eloquent\Builder;
use ApiChef\RequestToEloquent\Dummy\Post;

class PostListQuery extends QueryBuilderAbstract
{
Expand Down
2 changes: 1 addition & 1 deletion tests/QueryBuilderFiltersTest.php
Expand Up @@ -2,11 +2,11 @@

namespace ApiChef\RequestToEloquent;

use ApiChef\RequestToEloquent\Dummy\Post;
use ApiChef\RequestToEloquent\Queries\PostListQuery;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Http\Request;
use Illuminate\Support\Carbon;
use ApiChef\RequestToEloquent\Dummy\Post;

class QueryBuilderFiltersTest extends TestCase
{
Expand Down
4 changes: 2 additions & 2 deletions tests/QueryBuilderIncludesTest.php
Expand Up @@ -2,11 +2,11 @@

namespace ApiChef\RequestToEloquent;

use ApiChef\RequestToEloquent\Queries\PostListQuery;
use Illuminate\Http\Request;
use ApiChef\RequestToEloquent\Dummy\Comment;
use ApiChef\RequestToEloquent\Dummy\Post;
use ApiChef\RequestToEloquent\Dummy\Tag;
use ApiChef\RequestToEloquent\Queries\PostListQuery;
use Illuminate\Http\Request;

class QueryBuilderIncludesTest extends TestCase
{
Expand Down
4 changes: 2 additions & 2 deletions tests/QueryBuilderSortsTest.php
Expand Up @@ -2,12 +2,12 @@

namespace ApiChef\RequestToEloquent;

use ApiChef\RequestToEloquent\Dummy\Comment;
use ApiChef\RequestToEloquent\Dummy\Post;
use ApiChef\RequestToEloquent\Queries\PostListQuery;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Http\Request;
use Illuminate\Support\Carbon;
use ApiChef\RequestToEloquent\Dummy\Comment;
use ApiChef\RequestToEloquent\Dummy\Post;

class QueryBuilderSortsTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/database/factories/CommentFactory.php
@@ -1,9 +1,9 @@
<?php

use Faker\Generator as Faker;
use ApiChef\RequestToEloquent\Dummy\Comment;
use ApiChef\RequestToEloquent\Dummy\Post;
use ApiChef\RequestToEloquent\Dummy\User;
use Faker\Generator as Faker;

$factory->define(Comment::class, function (Faker $faker) {
return [
Expand Down
2 changes: 1 addition & 1 deletion tests/database/factories/PostFactory.php
@@ -1,8 +1,8 @@
<?php

use Faker\Generator as Faker;
use ApiChef\RequestToEloquent\Dummy\Post;
use ApiChef\RequestToEloquent\Dummy\User;
use Faker\Generator as Faker;

$factory->define(Post::class, function (Faker $faker) {
return [
Expand Down
2 changes: 1 addition & 1 deletion tests/database/factories/TagFactory.php
@@ -1,7 +1,7 @@
<?php

use Faker\Generator as Faker;
use ApiChef\RequestToEloquent\Dummy\Tag;
use Faker\Generator as Faker;

$factory->define(Tag::class, function (Faker $faker) {
return [
Expand Down
2 changes: 1 addition & 1 deletion tests/database/factories/UserFactory.php
@@ -1,8 +1,8 @@
<?php

use ApiChef\RequestToEloquent\Dummy\User;
use Faker\Generator as Faker;
use Illuminate\Support\Str;
use ApiChef\RequestToEloquent\Dummy\User;

$factory->define(User::class, function (Faker $faker) {
return [
Expand Down

0 comments on commit 8e3181e

Please sign in to comment.