Skip to content
This repository was archived by the owner on Jan 25, 2022. It is now read-only.

Apply fixes from StyleCI #19

Open
wants to merge 1 commit into
base: add-missing-test-case
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/scopes/SearchScope.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Goopil\RestFilter\Scopes;

use Goopil\RestFilter\Contracts\Searchable;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Builder;
use Goopil\RestFilter\Contracts\Searchable;

/**
* Class SearchScope.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

//
//namespace Goopil\RestFilter\Tests\Features;
//
Expand Down
4 changes: 2 additions & 2 deletions tests/utils/factories/TestFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
'text' => $faker->paragraph(10),

'int' => rand(1, 1000),
'double' => $faker->randomFloat(2, 1, 1000 ),
'decimal' => $faker->randomFloat(5, 1, 1000 ),
'double' => $faker->randomFloat(2, 1, 1000),
'decimal' => $faker->randomFloat(5, 1, 1000),

'datetime' => $faker->dateTime(),
'date' => $faker->date(),
Expand Down