Skip to content

Commit bbb2de6

Browse files
committed
StyleCI
1 parent ea161f2 commit bbb2de6

File tree

7 files changed

+5
-7
lines changed

7 files changed

+5
-7
lines changed

src/Eloquent/Concerns/QueriesRelationships.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Hoyvoy\CrossDatabase\Eloquent\Concerns;
44

5-
use Closure;
65
use Hoyvoy\CrossDatabase\CanCrossDatabaseShazaamInterface;
76
use Illuminate\Database\Eloquent\Builder;
87
use Illuminate\Database\Eloquent\Relations\Relation;

src/Eloquent/Model.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ abstract class Model extends IlluminateModel
1010
* Create a new Eloquent query builder for the model.
1111
*
1212
* @param \Illuminate\Database\Query\Builder $query
13-
*
13+
*
1414
* @return \oyvoy\Support\CrossDatabase\Eloquent\Builder|static
1515
*/
1616
public function newEloquentBuilder($query)

src/Query/Grammars/MySqlGrammar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class MySqlGrammar extends IlluminateMySqlGrammar
1212
*
1313
* @param \Illuminate\Database\Query\Builder $query
1414
* @param string $table
15-
*
15+
*
1616
* @return string
1717
*/
1818
protected function compileFrom(Builder $query, $table)

src/Query/Grammars/PostgresGrammar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class PostgresGrammar extends IlluminatePostgresGrammar
1212
*
1313
* @param \Illuminate\Database\Query\Builder $query
1414
* @param string $table
15-
*
15+
*
1616
* @return string
1717
*/
1818
protected function compileFrom(Builder $query, $table)

src/Query/Grammars/SqlServerGrammar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class SqlServerGrammar extends IlluminateSqlServerGrammar
1212
*
1313
* @param \Illuminate\Database\Query\Builder $query
1414
* @param string $table
15-
*
15+
*
1616
* @return string
1717
*/
1818
protected function compileFrom(Builder $query, $table)

tests/Integration/DatabaseEloquentSubqueriesCrossDatabaseTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Hoyvoy\Tests\Integration;
44

5-
use Illuminate\Database\Capsule\Manager as DB;
65
use Hoyvoy\CrossDatabase\Eloquent\Model as Model;
76
use Hoyvoy\Tests\TestCase;
87

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public function getEnvironmentSetUp($app)
111111
'driver' => 'sqlite',
112112
'database' => __DIR__.'/database/sqlite2.sqlite',
113113
'prefix' => '',
114-
]
114+
],
115115
]);
116116
}
117117
}

0 commit comments

Comments
 (0)