Skip to content

Commit

Permalink
Fix use statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Nov 2, 2016
1 parent f4b29b9 commit 8ebb54d
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 14 deletions.
3 changes: 1 addition & 2 deletions tests/TestCase/Cache/Engine/MemcachedEngineTest.php
Expand Up @@ -16,9 +16,8 @@

use Cake\Cache\Cache;
use Cake\Cache\Engine\MemcachedEngine;
use Cake\Core\Configure;
use Cake\TestSuite\TestCase;
use \Memcached;
use Memcached;

/**
* TestMemcachedEngine
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/Database/Driver/MysqlTest.php
Expand Up @@ -16,7 +16,7 @@

use Cake\Datasource\ConnectionManager;
use Cake\TestSuite\TestCase;
use \PDO;
use PDO;

/**
* Tests Mysql driver
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/Database/Driver/PostgresTest.php
Expand Up @@ -16,7 +16,7 @@

use Cake\Database\Query;
use Cake\TestSuite\TestCase;
use \PDO;
use PDO;

/**
* Tests Postgres driver
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/Database/Driver/SqlserverTest.php
Expand Up @@ -16,7 +16,7 @@

use Cake\Database\Query;
use Cake\TestSuite\TestCase;
use \PDO;
use PDO;

/**
* Tests Sqlserver driver
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/Database/Type/BinaryTypeTest.php
Expand Up @@ -16,7 +16,7 @@

use Cake\Database\Type;
use Cake\TestSuite\TestCase;
use \PDO;
use PDO;

/**
* Test for the Binary type.
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/Database/Type/BoolTypeTest.php
Expand Up @@ -16,7 +16,7 @@

use Cake\Database\Type;
use Cake\TestSuite\TestCase;
use \PDO;
use PDO;

/**
* Test for the Boolean type.
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/Database/Type/DecimalTypeTest.php
Expand Up @@ -18,7 +18,7 @@
use Cake\Database\Type\DecimalType;
use Cake\I18n\I18n;
use Cake\TestSuite\TestCase;
use \PDO;
use PDO;

/**
* Test for the Decimal type.
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/Database/Type/FloatTypeTest.php
Expand Up @@ -18,7 +18,7 @@
use Cake\Database\Type\FloatType;
use Cake\I18n\I18n;
use Cake\TestSuite\TestCase;
use \PDO;
use PDO;

/**
* Test for the Float type.
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/Database/Type/IntegerTypeTest.php
Expand Up @@ -16,7 +16,7 @@

use Cake\Database\Type;
use Cake\TestSuite\TestCase;
use \PDO;
use PDO;

/**
* Test for the Integer type.
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/Database/Type/StringTypeTest.php
Expand Up @@ -16,7 +16,7 @@

use Cake\Database\Type;
use Cake\TestSuite\TestCase;
use \PDO;
use PDO;

/**
* Test for the String type.
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/Database/Type/UuidTypeTest.php
Expand Up @@ -16,7 +16,7 @@

use Cake\Database\Type;
use Cake\TestSuite\TestCase;
use \PDO;
use PDO;

/**
* Test for the Uuid type.
Expand Down
3 changes: 1 addition & 2 deletions tests/TestCase/DatabaseSuite.php
Expand Up @@ -15,9 +15,8 @@
namespace Cake\Test\TestCase;

use Cake\Datasource\ConnectionManager;
use Cake\TestSuite\TestPermutationDecorator;
use Cake\TestSuite\TestSuite;
use \PHPUnit_Framework_TestResult;
use PHPUnit_Framework_TestResult;

/**
* All tests related to database
Expand Down

0 comments on commit 8ebb54d

Please sign in to comment.