Skip to content

Commit 7eb86c3

Browse files
author
Afonso Gloeden
committed
Order of imports updated
1 parent b5b6f3b commit 7eb86c3

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

src/Database/Connection.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
namespace Uepg\LaravelSybase\Database;
44

5+
use PDO;
56
use Closure;
67
use Exception;
7-
use PDO;
8-
use Illuminate\Database\Connection as IlluminateConnection;
9-
use Doctrine\DBAL\Driver\PDOSqlsrv\Driver as DoctrineDriver;
108
use Illuminate\Database\Query\Builder;
11-
use Uepg\LaravelSybase\Database\Query\Grammar as QueryGrammar;
129
use Uepg\LaravelSybase\Database\Query\Processor;
1310
use Uepg\LaravelSybase\Database\Schema\Blueprint;
11+
use Illuminate\Database\Connection as IlluminateConnection;
12+
use Doctrine\DBAL\Driver\PDOSqlsrv\Driver as DoctrineDriver;
13+
use Uepg\LaravelSybase\Database\Query\Grammar as QueryGrammar;
1414
use Uepg\LaravelSybase\Database\Schema\Grammar as SchemaGrammar;
1515

1616
class Connection extends IlluminateConnection

src/Database/Query/Grammar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace Uepg\LaravelSybase\Database\Query;
44

5-
use Illuminate\Database\Query\Grammars\Grammar as IlluminateGrammar;
65
use Illuminate\Database\Query\Builder;
6+
use Illuminate\Database\Query\Grammars\Grammar as IlluminateGrammar;
77

88
class Grammar extends IlluminateGrammar
99
{

src/Database/Schema/Grammar.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace Uepg\LaravelSybase\Database\Schema;
44

5-
use Illuminate\Database\Schema\Grammars\Grammar as IlluminateGrammar;
6-
use Uepg\LaravelSybase\Database\Schema\Blueprint;
75
use Uepg\LaravelSybase\Support\Fluent;
6+
use Uepg\LaravelSybase\Database\Schema\Blueprint;
7+
use Illuminate\Database\Schema\Grammars\Grammar as IlluminateGrammar;
88

99
class Grammar extends IlluminateGrammar
1010
{

src/SybaseServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
namespace Uepg\LaravelSybase;
44

5-
use Illuminate\Database\Connection as IlluminateConnection;
65
use Illuminate\Support\ServiceProvider;
7-
use Uepg\LaravelSybase\Database\Connection as SybaseConnection;
86
use Uepg\LaravelSybase\Database\Connector;
7+
use Illuminate\Database\Connection as IlluminateConnection;
8+
use Uepg\LaravelSybase\Database\Connection as SybaseConnection;
99

1010
class SybaseServiceProvider extends ServiceProvider
1111
{

0 commit comments

Comments
 (0)