Skip to content

Commit

Permalink
Run php-cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
marella committed Mar 7, 2016
1 parent 738f1e1 commit dfba77c
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions src/PhD/ConnectionFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

namespace PhD;

use PDO;
use PhD\Support\Arr;
use InvalidArgumentException;
use PhD\Connectors\MySqlConnector;
use PDO;
use PhD\Connections\MySqlConnection;
use PhD\Connectors\MySqlConnector;
use PhD\Support\Arr;

class ConnectionFactory
{
Expand Down
8 changes: 4 additions & 4 deletions src/PhD/Connections/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

namespace PhD\Connections;

use PDO;
use Closure;
use DateTimeInterface;
use Exception;
use Throwable;
use LogicException;
use RuntimeException;
use DateTimeInterface;
use PDO;
use PhD\DetectsLostConnections;
use PhD\QueryException;
use PhD\Support\Arr;
use RuntimeException;
use Throwable;

class Connection implements ConnectionInterface
{
Expand Down
4 changes: 2 additions & 2 deletions src/PhD/Connectors/Connector.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace PhD\Connectors;

use PDO;
use Exception;
use PhD\Support\Arr;
use PDO;
use PhD\DetectsLostConnections;
use PhD\Support\Arr;

class Connector
{
Expand Down
4 changes: 2 additions & 2 deletions src/PhD/DatabaseManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

namespace PhD;

use InvalidArgumentException;
use PDO;
use PhD\Connections\Connection;
use PhD\Support\Arr;
use PhD\Support\Str;
use InvalidArgumentException;
use PhD\Connections\Connection;

class DatabaseManager implements ConnectionResolverInterface
{
Expand Down
2 changes: 1 addition & 1 deletion tests/ConnectionFactoryTest.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

use PhD\ConnectionFactory;
use Mockery as m;
use PhD\ConnectionFactory;

class ConnectionFactoryTest extends PHPUnit_Framework_TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/ConnectorTest.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

use PhD\Connectors\Connector;
use Mockery as m;
use PhD\Connectors\Connector;

class ConnectorTest extends PHPUnit_Framework_TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/DBTest.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

use Mockery as m;
use PhD\DB;
use PhD\DatabaseManager;
use PhD\DB;

class DBTest extends PHPUnit_Framework_TestCase
{
Expand Down

0 comments on commit dfba77c

Please sign in to comment.