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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
a33d152d
Commit
a33d152d
authored
Dec 09, 2011
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed package and version tags
parent
f8ea5882
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
0 additions
and
38 deletions
+0
-38
CommandRunner.php
framework/console/CommandRunner.php
+0
-2
HelpCommand.php
framework/console/HelpCommand.php
+0
-2
Migration.php
framework/db/Migration.php
+0
-2
ActiveRecord.php
framework/db/ar/ActiveRecord.php
+0
-18
ActiveRecordBehavior.php
framework/db/ar/ActiveRecordBehavior.php
+0
-2
ProfileTarget.php
framework/logging/ProfileTarget.php
+0
-2
WebTarget.php
framework/logging/WebTarget.php
+0
-2
DateValidator.php
framework/validators/DateValidator.php
+0
-2
ExistValidator.php
framework/validators/ExistValidator.php
+0
-2
FileValidator.php
framework/validators/FileValidator.php
+0
-2
UniqueValidator.php
framework/validators/UniqueValidator.php
+0
-2
No files found.
framework/console/CommandRunner.php
View file @
a33d152d
...
@@ -16,8 +16,6 @@ namespace yii\console;
...
@@ -16,8 +16,6 @@ namespace yii\console;
* @property string $scriptName The entry script name.
* @property string $scriptName The entry script name.
*
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: CConsoleCommandRunner.php 3426 2011-10-25 00:01:09Z alexander.makarow $
* @package system.console
* @since 2.0
* @since 2.0
*/
*/
class
CommandRunner
extends
\yii\base\Component
class
CommandRunner
extends
\yii\base\Component
...
...
framework/console/HelpCommand.php
View file @
a33d152d
...
@@ -26,8 +26,6 @@ namespace yii\console;
...
@@ -26,8 +26,6 @@ namespace yii\console;
* @property string $help The command description.
* @property string $help The command description.
*
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: CHelpCommand.php 3426 2011-10-25 00:01:09Z alexander.makarow $
* @package system.console
* @since 2.0
* @since 2.0
*/
*/
class
HelpCommand
extends
Command
class
HelpCommand
extends
Command
...
...
framework/db/Migration.php
View file @
a33d152d
...
@@ -28,8 +28,6 @@
...
@@ -28,8 +28,6 @@
* applying migrations.
* applying migrations.
*
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: CDbMigration.php 3218 2011-05-13 00:06:44Z alexander.makarow $
* @package system.db
* @since 2.0
* @since 2.0
*/
*/
abstract
class
CDbMigration
extends
yii\base\Component
abstract
class
CDbMigration
extends
yii\base\Component
...
...
framework/db/ar/ActiveRecord.php
View file @
a33d152d
...
@@ -51,8 +51,6 @@ $post->save();
...
@@ -51,8 +51,6 @@ $post->save();
* about this class.
* about this class.
*
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: ActiveRecord.php 3344 2011-07-06 22:04:50Z alexander.makarow $
* @package system.db.ar
* @since 2.0
* @since 2.0
*
*
* @property array $attributes
* @property array $attributes
...
@@ -1861,8 +1859,6 @@ abstract class ActiveRecord extends \yii\base\Model
...
@@ -1861,8 +1859,6 @@ abstract class ActiveRecord extends \yii\base\Model
/**
/**
* CBaseActiveRelation is the base class for all active relations.
* CBaseActiveRelation is the base class for all active relations.
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: ActiveRecord.php 3344 2011-07-06 22:04:50Z alexander.makarow $
* @package system.db.ar
*/
*/
class
CBaseActiveRelation
extends
CComponent
class
CBaseActiveRelation
extends
CComponent
{
{
...
@@ -2001,8 +1997,6 @@ class CBaseActiveRelation extends CComponent
...
@@ -2001,8 +1997,6 @@ class CBaseActiveRelation extends CComponent
/**
/**
* CStatRelation represents a statistical relational query.
* CStatRelation represents a statistical relational query.
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: ActiveRecord.php 3344 2011-07-06 22:04:50Z alexander.makarow $
* @package system.db.ar
*/
*/
class
CStatRelation
extends
CBaseActiveRelation
class
CStatRelation
extends
CBaseActiveRelation
{
{
...
@@ -2037,8 +2031,6 @@ class CStatRelation extends CBaseActiveRelation
...
@@ -2037,8 +2031,6 @@ class CStatRelation extends CBaseActiveRelation
/**
/**
* CActiveRelation is the base class for representing active relations that bring back related objects.
* CActiveRelation is the base class for representing active relations that bring back related objects.
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: ActiveRecord.php 3344 2011-07-06 22:04:50Z alexander.makarow $
* @package system.db.ar
* @since 2.0
* @since 2.0
*/
*/
class
CActiveRelation
extends
CBaseActiveRelation
class
CActiveRelation
extends
CBaseActiveRelation
...
@@ -2130,8 +2122,6 @@ class CActiveRelation extends CBaseActiveRelation
...
@@ -2130,8 +2122,6 @@ class CActiveRelation extends CBaseActiveRelation
/**
/**
* CBelongsToRelation represents the parameters specifying a BELONGS_TO relation.
* CBelongsToRelation represents the parameters specifying a BELONGS_TO relation.
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: ActiveRecord.php 3344 2011-07-06 22:04:50Z alexander.makarow $
* @package system.db.ar
* @since 2.0
* @since 2.0
*/
*/
class
CBelongsToRelation
extends
CActiveRelation
class
CBelongsToRelation
extends
CActiveRelation
...
@@ -2142,8 +2132,6 @@ class CBelongsToRelation extends CActiveRelation
...
@@ -2142,8 +2132,6 @@ class CBelongsToRelation extends CActiveRelation
/**
/**
* CHasOneRelation represents the parameters specifying a HAS_ONE relation.
* CHasOneRelation represents the parameters specifying a HAS_ONE relation.
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: ActiveRecord.php 3344 2011-07-06 22:04:50Z alexander.makarow $
* @package system.db.ar
* @since 2.0
* @since 2.0
*/
*/
class
CHasOneRelation
extends
CActiveRelation
class
CHasOneRelation
extends
CActiveRelation
...
@@ -2159,8 +2147,6 @@ class CHasOneRelation extends CActiveRelation
...
@@ -2159,8 +2147,6 @@ class CHasOneRelation extends CActiveRelation
/**
/**
* CHasManyRelation represents the parameters specifying a HAS_MANY relation.
* CHasManyRelation represents the parameters specifying a HAS_MANY relation.
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: ActiveRecord.php 3344 2011-07-06 22:04:50Z alexander.makarow $
* @package system.db.ar
* @since 2.0
* @since 2.0
*/
*/
class
CHasManyRelation
extends
CActiveRelation
class
CHasManyRelation
extends
CActiveRelation
...
@@ -2209,8 +2195,6 @@ class CHasManyRelation extends CActiveRelation
...
@@ -2209,8 +2195,6 @@ class CHasManyRelation extends CActiveRelation
/**
/**
* CManyManyRelation represents the parameters specifying a MANY_MANY relation.
* CManyManyRelation represents the parameters specifying a MANY_MANY relation.
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: ActiveRecord.php 3344 2011-07-06 22:04:50Z alexander.makarow $
* @package system.db.ar
* @since 2.0
* @since 2.0
*/
*/
class
CManyManyRelation
extends
CHasManyRelation
class
CManyManyRelation
extends
CHasManyRelation
...
@@ -2222,8 +2206,6 @@ class CManyManyRelation extends CHasManyRelation
...
@@ -2222,8 +2206,6 @@ class CManyManyRelation extends CHasManyRelation
* ActiveRecordMetaData represents the meta-data for an Active Record class.
* ActiveRecordMetaData represents the meta-data for an Active Record class.
*
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: ActiveRecord.php 3344 2011-07-06 22:04:50Z alexander.makarow $
* @package system.db.ar
* @since 2.0
* @since 2.0
*/
*/
class
ActiveRecordMetaData
class
ActiveRecordMetaData
...
...
framework/db/ar/ActiveRecordBehavior.php
View file @
a33d152d
...
@@ -14,8 +14,6 @@
...
@@ -14,8 +14,6 @@
* that are only defined by {@link CActiveRecord}.
* that are only defined by {@link CActiveRecord}.
*
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: CActiveRecordBehavior.php 2799 2011-01-01 19:31:13Z qiang.xue $
* @package system.db.ar
* @since 2.0
* @since 2.0
*/
*/
class
CActiveRecordBehavior
extends
CModelBehavior
class
CActiveRecordBehavior
extends
CModelBehavior
...
...
framework/logging/ProfileTarget.php
View file @
a33d152d
...
@@ -21,8 +21,6 @@
...
@@ -21,8 +21,6 @@
* </ul>
* </ul>
*
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: CProfileLogRoute.php 3204 2011-05-05 21:36:32Z alexander.makarow $
* @package system.logging
* @since 2.0
* @since 2.0
*/
*/
class
CProfileLogRoute
extends
CWebLogRoute
class
CProfileLogRoute
extends
CWebLogRoute
...
...
framework/logging/WebTarget.php
View file @
a33d152d
...
@@ -15,8 +15,6 @@
...
@@ -15,8 +15,6 @@
* or in FireBug console window (if {@link showInFireBug} is set true).
* or in FireBug console window (if {@link showInFireBug} is set true).
*
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: CWebLogRoute.php 3001 2011-02-24 16:42:44Z alexander.makarow $
* @package system.logging
* @since 2.0
* @since 2.0
*/
*/
class
CWebLogRoute
extends
CLogRoute
class
CWebLogRoute
extends
CLogRoute
...
...
framework/validators/DateValidator.php
View file @
a33d152d
...
@@ -16,8 +16,6 @@ namespace yii\validators;
...
@@ -16,8 +16,6 @@ namespace yii\validators;
* must be in. If the given date value doesn't follow the format, the attribute is considered as invalid.
* must be in. If the given date value doesn't follow the format, the attribute is considered as invalid.
*
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: CDateValidator.php 2799 2011-01-01 19:31:13Z qiang.xue $
* @package system.validators
* @since 2.0
* @since 2.0
*/
*/
class
CDateValidator
extends
Validator
class
CDateValidator
extends
Validator
...
...
framework/validators/ExistValidator.php
View file @
a33d152d
...
@@ -16,8 +16,6 @@ namespace yii\validators;
...
@@ -16,8 +16,6 @@ namespace yii\validators;
* that can be found in the foreign table.
* that can be found in the foreign table.
*
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: CExistValidator.php 2799 2011-01-01 19:31:13Z qiang.xue $
* @package system.validators
* @since 2.0
* @since 2.0
*/
*/
class
CExistValidator
extends
Validator
class
CExistValidator
extends
Validator
...
...
framework/validators/FileValidator.php
View file @
a33d152d
...
@@ -40,8 +40,6 @@ namespace yii\validators;
...
@@ -40,8 +40,6 @@ namespace yii\validators;
* You can use {@link CFileValidator} to validate the file attribute.
* You can use {@link CFileValidator} to validate the file attribute.
*
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: CFileValidator.php 2799 2011-01-01 19:31:13Z qiang.xue $
* @package system.validators
* @since 2.0
* @since 2.0
*/
*/
class
CFileValidator
extends
Validator
class
CFileValidator
extends
Validator
...
...
framework/validators/UniqueValidator.php
View file @
a33d152d
...
@@ -13,8 +13,6 @@ namespace yii\validators;
...
@@ -13,8 +13,6 @@ namespace yii\validators;
* CUniqueValidator validates that the attribute value is unique in the corresponding database table.
* CUniqueValidator validates that the attribute value is unique in the corresponding database table.
*
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id: CUniqueValidator.php 3260 2011-06-13 20:56:54Z alexander.makarow $
* @package system.validators
* @since 1.0
* @since 1.0
*/
*/
class
CUniqueValidator
extends
Validator
class
CUniqueValidator
extends
Validator
...
...
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