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
5d23a066
Commit
5d23a066
authored
Jan 12, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused imports
parent
349f2c9e
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
0 additions
and
22 deletions
+0
-22
Cache.php
framework/caching/Cache.php
+0
-1
CaptchaValidator.php
framework/captcha/CaptchaValidator.php
+0
-1
SqlDataProvider.php
framework/data/SqlDataProvider.php
+0
-1
BaseActiveRecord.php
framework/db/BaseActiveRecord.php
+0
-2
Logger.php
framework/log/Logger.php
+0
-1
BooleanValidator.php
framework/validators/BooleanValidator.php
+0
-1
EmailValidator.php
framework/validators/EmailValidator.php
+0
-1
NumberValidator.php
framework/validators/NumberValidator.php
+0
-1
RangeValidator.php
framework/validators/RangeValidator.php
+0
-1
RegularExpressionValidator.php
framework/validators/RegularExpressionValidator.php
+0
-1
RequiredValidator.php
framework/validators/RequiredValidator.php
+0
-1
StringValidator.php
framework/validators/StringValidator.php
+0
-1
UrlValidator.php
framework/validators/UrlValidator.php
+0
-1
AssetBundle.php
framework/web/AssetBundle.php
+0
-2
View.php
framework/web/View.php
+0
-6
No files found.
framework/caching/Cache.php
View file @
5d23a066
...
...
@@ -9,7 +9,6 @@ namespace yii\caching;
use
Yii
;
use
yii\base\Component
;
use
yii\base\InvalidConfigException
;
use
yii\helpers\StringHelper
;
/**
...
...
framework/captcha/CaptchaValidator.php
View file @
5d23a066
...
...
@@ -9,7 +9,6 @@ namespace yii\captcha;
use
Yii
;
use
yii\base\InvalidConfigException
;
use
yii\helpers\Html
;
use
yii\validators\ValidationAsset
;
use
yii\validators\Validator
;
...
...
framework/data/SqlDataProvider.php
View file @
5d23a066
...
...
@@ -9,7 +9,6 @@ namespace yii\data;
use
Yii
;
use
yii\base\InvalidConfigException
;
use
yii\base\Model
;
use
yii\db\Connection
;
/**
...
...
framework/db/BaseActiveRecord.php
View file @
5d23a066
...
...
@@ -15,8 +15,6 @@ use yii\base\ModelEvent;
use
yii\base\NotSupportedException
;
use
yii\base\UnknownMethodException
;
use
yii\base\InvalidCallException
;
use
yii\helpers\StringHelper
;
use
yii\helpers\Inflector
;
/**
* ActiveRecord is the base class for classes representing relational data in terms of objects.
...
...
framework/log/Logger.php
View file @
5d23a066
...
...
@@ -9,7 +9,6 @@ namespace yii\log;
use
Yii
;
use
yii\base\Component
;
use
yii\base\InvalidConfigException
;
/**
* Logger records logged messages in memory and sends them to different targets as needed.
...
...
framework/validators/BooleanValidator.php
View file @
5d23a066
...
...
@@ -8,7 +8,6 @@
namespace
yii\validators
;
use
Yii
;
use
yii\helpers\Html
;
/**
* BooleanValidator checks if the attribute value is a boolean value.
...
...
framework/validators/EmailValidator.php
View file @
5d23a066
...
...
@@ -9,7 +9,6 @@ namespace yii\validators;
use
Yii
;
use
yii\base\InvalidConfigException
;
use
yii\helpers\Html
;
use
yii\web\JsExpression
;
use
yii\helpers\Json
;
...
...
framework/validators/NumberValidator.php
View file @
5d23a066
...
...
@@ -8,7 +8,6 @@
namespace
yii\validators
;
use
Yii
;
use
yii\helpers\Html
;
use
yii\web\JsExpression
;
use
yii\helpers\Json
;
...
...
framework/validators/RangeValidator.php
View file @
5d23a066
...
...
@@ -9,7 +9,6 @@ namespace yii\validators;
use
Yii
;
use
yii\base\InvalidConfigException
;
use
yii\helpers\Html
;
/**
* RangeValidator validates that the attribute value is among a list of values.
...
...
framework/validators/RegularExpressionValidator.php
View file @
5d23a066
...
...
@@ -9,7 +9,6 @@ namespace yii\validators;
use
Yii
;
use
yii\base\InvalidConfigException
;
use
yii\helpers\Html
;
use
yii\web\JsExpression
;
use
yii\helpers\Json
;
...
...
framework/validators/RequiredValidator.php
View file @
5d23a066
...
...
@@ -8,7 +8,6 @@
namespace
yii\validators
;
use
Yii
;
use
yii\helpers\Html
;
/**
* RequiredValidator validates that the specified attribute does not have null or empty value.
...
...
framework/validators/StringValidator.php
View file @
5d23a066
...
...
@@ -8,7 +8,6 @@
namespace
yii\validators
;
use
Yii
;
use
yii\helpers\Html
;
/**
* StringValidator validates that the attribute value is of certain length.
...
...
framework/validators/UrlValidator.php
View file @
5d23a066
...
...
@@ -9,7 +9,6 @@ namespace yii\validators;
use
Yii
;
use
yii\base\InvalidConfigException
;
use
yii\helpers\Html
;
use
yii\web\JsExpression
;
use
yii\helpers\Json
;
...
...
framework/web/AssetBundle.php
View file @
5d23a066
...
...
@@ -8,9 +8,7 @@
namespace
yii\web
;
use
Yii
;
use
yii\base\InvalidConfigException
;
use
yii\base\Object
;
use
yii\web\View
;
/**
* AssetBundle represents a collection of asset files, such as CSS, JS, images.
...
...
framework/web/View.php
View file @
5d23a066
...
...
@@ -8,13 +8,7 @@
namespace
yii\web
;
use
Yii
;
use
yii\helpers\FileHelper
;
use
yii\helpers\Html
;
use
yii\web\JqueryAsset
;
use
yii\web\AssetBundle
;
use
yii\widgets\Block
;
use
yii\widgets\ContentDecorator
;
use
yii\widgets\FragmentCache
;
use
yii\base\InvalidConfigException
;
/**
...
...
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