Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
42a58870
Commit
42a58870
authored
Nov 14, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
moved db interfaces and traits back to yii/db.
parent
3106105e
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
5 additions
and
14 deletions
+5
-14
ActiveDataProvider.php
framework/yii/data/ActiveDataProvider.php
+1
-1
ActiveQuery.php
framework/yii/db/ActiveQuery.php
+0
-2
ActiveQueryInterface.php
framework/yii/db/ActiveQueryInterface.php
+1
-2
ActiveQueryTrait.php
framework/yii/db/ActiveQueryTrait.php
+1
-3
ActiveRecord.php
framework/yii/db/ActiveRecord.php
+0
-1
ActiveRelation.php
framework/yii/db/ActiveRelation.php
+0
-2
ActiveRelationInterface.php
framework/yii/db/ActiveRelationInterface.php
+1
-1
ActiveRelationTrait.php
framework/yii/db/ActiveRelationTrait.php
+1
-2
No files found.
framework/yii/data/ActiveDataProvider.php
View file @
42a58870
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
namespace
yii\data
;
namespace
yii\data
;
use
Yii
;
use
Yii
;
use
yii\
ar
\ActiveQueryInterface
;
use
yii\
db
\ActiveQueryInterface
;
use
yii\base\InvalidConfigException
;
use
yii\base\InvalidConfigException
;
use
yii\base\Model
;
use
yii\base\Model
;
use
yii\db\Connection
;
use
yii\db\Connection
;
...
...
framework/yii/db/ActiveQuery.php
View file @
42a58870
...
@@ -7,8 +7,6 @@
...
@@ -7,8 +7,6 @@
*/
*/
namespace
yii\db
;
namespace
yii\db
;
use
yii\ar\ActiveQueryInterface
;
use
yii\ar\ActiveQueryTrait
;
/**
/**
* ActiveQuery represents a DB query associated with an Active Record class.
* ActiveQuery represents a DB query associated with an Active Record class.
...
...
framework/yii/
ar
/ActiveQueryInterface.php
→
framework/yii/
db
/ActiveQueryInterface.php
View file @
42a58870
...
@@ -5,8 +5,7 @@
...
@@ -5,8 +5,7 @@
* @license http://www.yiiframework.com/license/
* @license http://www.yiiframework.com/license/
*/
*/
namespace
yii\ar
;
namespace
yii\db
;
use
yii\db\QueryInterface
;
/**
/**
* ActiveQueryInterface defines the common interface to be implemented by active record query classes.
* ActiveQueryInterface defines the common interface to be implemented by active record query classes.
...
...
framework/yii/
ar
/ActiveQueryTrait.php
→
framework/yii/
db
/ActiveQueryTrait.php
View file @
42a58870
...
@@ -5,9 +5,7 @@
...
@@ -5,9 +5,7 @@
* @license http://www.yiiframework.com/license/
* @license http://www.yiiframework.com/license/
*/
*/
namespace
yii\ar
;
namespace
yii\db
;
use
yii\db\ActiveRecord
;
/**
/**
* ActiveQueryTrait implements the common methods and properties for active record query classes.
* ActiveQueryTrait implements the common methods and properties for active record query classes.
...
...
framework/yii/db/ActiveRecord.php
View file @
42a58870
...
@@ -8,7 +8,6 @@
...
@@ -8,7 +8,6 @@
namespace
yii\db
;
namespace
yii\db
;
use
yii\ar\ActiveRelationInterface
;
use
yii\base\InvalidConfigException
;
use
yii\base\InvalidConfigException
;
use
yii\base\Model
;
use
yii\base\Model
;
use
yii\base\InvalidParamException
;
use
yii\base\InvalidParamException
;
...
...
framework/yii/db/ActiveRelation.php
View file @
42a58870
...
@@ -7,8 +7,6 @@
...
@@ -7,8 +7,6 @@
*/
*/
namespace
yii\db
;
namespace
yii\db
;
use
yii\ar\ActiveRelationInterface
;
use
yii\ar\ActiveRelationTrait
;
/**
/**
* ActiveRelation represents a relation between two Active Record classes.
* ActiveRelation represents a relation between two Active Record classes.
...
...
framework/yii/
ar
/ActiveRelationInterface.php
→
framework/yii/
db
/ActiveRelationInterface.php
View file @
42a58870
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
* @license http://www.yiiframework.com/license/
* @license http://www.yiiframework.com/license/
*/
*/
namespace
yii\
ar
;
namespace
yii\
db
;
/**
/**
* ActiveRelationInterface defines the common interface to be implemented by active record relation classes.
* ActiveRelationInterface defines the common interface to be implemented by active record relation classes.
...
...
framework/yii/
ar
/ActiveRelationTrait.php
→
framework/yii/
db
/ActiveRelationTrait.php
View file @
42a58870
...
@@ -5,10 +5,9 @@
...
@@ -5,10 +5,9 @@
* @license http://www.yiiframework.com/license/
* @license http://www.yiiframework.com/license/
*/
*/
namespace
yii\
ar
;
namespace
yii\
db
;
use
yii\base\InvalidConfigException
;
use
yii\base\InvalidConfigException
;
use
yii\db\ActiveRecord
;
/**
/**
* ActiveRelationTrait implements the common methods and properties for active record relation classes.
* ActiveRelationTrait implements the common methods and properties for active record relation classes.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment