From 92ee7558c6b6dd2461b645cb1f19a81ef8c50db5 Mon Sep 17 00:00:00 2001 From: David Date: Sat, 8 Aug 2015 22:48:07 +0200 Subject: Removed redundand Prado::using statements --- framework/Data/Common/Mysql/TMysqlCommandBuilder.php | 1 - framework/Data/Common/Mysql/TMysqlMetaData.php | 2 -- framework/Data/Common/Mysql/TMysqlTableColumn.php | 1 - framework/Data/Common/Mysql/TMysqlTableInfo.php | 3 --- 4 files changed, 7 deletions(-) (limited to 'framework/Data/Common/Mysql') diff --git a/framework/Data/Common/Mysql/TMysqlCommandBuilder.php b/framework/Data/Common/Mysql/TMysqlCommandBuilder.php index a4f717e0..f2b00e37 100644 --- a/framework/Data/Common/Mysql/TMysqlCommandBuilder.php +++ b/framework/Data/Common/Mysql/TMysqlCommandBuilder.php @@ -14,7 +14,6 @@ namespace Prado\Data\Common\Mysql; use Prado\Data\Common\TDbCommandBuilder; use Prado\Prado; -Prado::using('System.Data.Common.TDbCommandBuilder'); /** * TMysqlCommandBuilder implements default TDbCommandBuilder diff --git a/framework/Data/Common/Mysql/TMysqlMetaData.php b/framework/Data/Common/Mysql/TMysqlMetaData.php index f2754181..55193a05 100644 --- a/framework/Data/Common/Mysql/TMysqlMetaData.php +++ b/framework/Data/Common/Mysql/TMysqlMetaData.php @@ -20,8 +20,6 @@ use Prado\Data\TDbColumnCaseMode; use Prado\Exceptions\TDbException; use Prado\Prado; -Prado::using('System.Data.Common.TDbMetaData'); -Prado::using('System.Data.Common.Mysql.TMysqlTableInfo'); /** * TMysqlMetaData loads Mysql version 4.1.x and 5.x database table and column information. diff --git a/framework/Data/Common/Mysql/TMysqlTableColumn.php b/framework/Data/Common/Mysql/TMysqlTableColumn.php index ef1e35c9..3158cacf 100644 --- a/framework/Data/Common/Mysql/TMysqlTableColumn.php +++ b/framework/Data/Common/Mysql/TMysqlTableColumn.php @@ -17,7 +17,6 @@ namespace Prado\Data\Common\Mysql; use Prado\Data\Common\TDbTableColumn; use Prado\Prado; -Prado::using('System.Data.Common.TDbTableColumn'); /** * Describes the column metadata of the schema for a Mysql database table. diff --git a/framework/Data/Common/Mysql/TMysqlTableInfo.php b/framework/Data/Common/Mysql/TMysqlTableInfo.php index 896f4e59..4be9fb62 100644 --- a/framework/Data/Common/Mysql/TMysqlTableInfo.php +++ b/framework/Data/Common/Mysql/TMysqlTableInfo.php @@ -17,8 +17,6 @@ namespace Prado\Data\Common\Mysql; use Prado\Data\Common\TDbTableInfo; use Prado\Prado; -Prado::using('System.Data.Common.TDbTableInfo'); -Prado::using('System.Data.Common.Mysql.TMysqlTableColumn'); /** * TMysqlTableInfo class provides additional table information for MySQL database. @@ -54,7 +52,6 @@ class TMysqlTableInfo extends TDbTableInfo */ public function createCommandBuilder($connection) { - Prado::using('System.Data.Common.Mysql.TMysqlCommandBuilder'); return new TMysqlCommandBuilder($connection,$this); } } -- cgit v1.2.3