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
147558ea
Commit
147558ea
authored
Aug 28, 2013
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added some class documentation
parent
91c16782
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
32 additions
and
3 deletions
+32
-3
LogTarget.php
framework/yii/debug/LogTarget.php
+2
-0
Module.php
framework/yii/debug/Module.php
+2
-0
AccessRule.php
framework/yii/web/AccessRule.php
+1
-0
Application.php
framework/yii/web/Application.php
+1
-1
Controller.php
framework/yii/web/Controller.php
+1
-1
HttpCache.php
framework/yii/web/HttpCache.php
+2
-0
JqueryAsset.php
framework/yii/web/JqueryAsset.php
+2
-0
JsExpression.php
framework/yii/web/JsExpression.php
+3
-1
PageCache.php
framework/yii/web/PageCache.php
+2
-0
Request.php
framework/yii/web/Request.php
+5
-0
Response.php
framework/yii/web/Response.php
+4
-0
UploadedFile.php
framework/yii/web/UploadedFile.php
+6
-0
UserEvent.php
framework/yii/web/UserEvent.php
+1
-0
No files found.
framework/yii/debug/LogTarget.php
View file @
147558ea
...
...
@@ -11,6 +11,8 @@ use Yii;
use
yii\log\Target
;
/**
* The debug LogTarget is used to store logs for later use in the debugger tool
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
...
...
framework/yii/debug/Module.php
View file @
147558ea
...
...
@@ -12,6 +12,8 @@ use yii\base\View;
use
yii\web\HttpException
;
/**
* The Yii Debug Module provides the debug toolbar and debugger
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
...
...
framework/yii/web/AccessRule.php
View file @
147558ea
...
...
@@ -11,6 +11,7 @@ use yii\base\Component;
use
yii\base\Action
;
/**
* This class represents an access rule defined by the [[AccessControl]] action filter
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
...
...
framework/yii/web/Application.php
View file @
147558ea
...
...
@@ -11,7 +11,7 @@ use Yii;
use
yii\base\InvalidRouteException
;
/**
* Application is the base class for all application classes.
* Application is the base class for all
web
application classes.
*
* @property AssetManager $assetManager The asset manager component. This property is read-only.
* @property string $homeUrl The homepage URL.
...
...
framework/yii/web/Controller.php
View file @
147558ea
...
...
@@ -12,7 +12,7 @@ use yii\base\InlineAction;
use
yii\helpers\Html
;
/**
* Controller is the base class of
W
eb controllers.
* Controller is the base class of
w
eb controllers.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
...
...
framework/yii/web/HttpCache.php
View file @
147558ea
...
...
@@ -12,6 +12,8 @@ use yii\base\ActionFilter;
use
yii\base\Action
;
/**
* The HttpCache provides functionality for caching via HTTP Last-Modified and Etag headers
*
* @author Da:Sourcerer <webmaster@dasourcerer.net>
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
...
...
framework/yii/web/JqueryAsset.php
View file @
147558ea
...
...
@@ -8,6 +8,8 @@
namespace
yii\web
;
/**
* This asset bundle provides the [jquery javascript library](http://jquery.com/)
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
...
...
framework/yii/web/JsExpression.php
View file @
147558ea
...
...
@@ -11,8 +11,10 @@ use yii\base\Object;
/**
* JsExpression marks a string as a JavaScript expression.
* When using [[Json::encode()]] to encode a value, JsonExpression objects
*
* When using [[yii\helpers\Json::encode()]] to encode a value, JsonExpression objects
* will be specially handled and encoded as a JavaScript expression instead of a string.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
...
...
framework/yii/web/PageCache.php
View file @
147558ea
...
...
@@ -14,6 +14,8 @@ use yii\base\View;
use
yii\caching\Dependency
;
/**
* The PageCache provides functionality for whole page caching
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
...
...
framework/yii/web/Request.php
View file @
147558ea
...
...
@@ -12,6 +12,11 @@ use yii\base\InvalidConfigException;
use
yii\helpers\Security
;
/**
* The web Request class represents an HTTP request
*
* It encapsulates the $_SERVER variable and resolves its inconsistency among different Web servers.
* Also it provides an interface to retrieve request parameters from $_POST, $_GET, $_COOKIES and REST
* parameters sent via other HTTP methods like PUT or DELETE.
*
* @property string $absoluteUrl The currently requested absolute URL. This property is read-only.
* @property string $acceptTypes User browser accept types, null if not present. This property is read-only.
...
...
framework/yii/web/Response.php
View file @
147558ea
...
...
@@ -17,6 +17,10 @@ use yii\helpers\Security;
use
yii\helpers\StringHelper
;
/**
* The web Response class represents an HTTP response
*
* It holds the [[headers]], [[cookies]] and [[content]] that is to be sent to the client.
* It also controls the HTTP [[statusCode|status code]].
*
* @property CookieCollection $cookies The cookie collection. This property is read-only.
* @property HeaderCollection $headers The header collection. This property is read-only.
...
...
framework/yii/web/UploadedFile.php
View file @
147558ea
...
...
@@ -10,6 +10,12 @@ namespace yii\web;
use
yii\helpers\Html
;
/**
* UploadedFile represents the information for an uploaded file.
*
* You can call [[getInstance()]] to retrieve the instance of an uploaded file,
* and then use [[saveAs()]] to save it on the server.
* You may also query other information about the file, including [[name]],
* [[tempName]], [[type]], [[size]] and [[error]].
*
* @property integer $error The error code. This property is read-only.
* @property boolean $hasError Whether there is an error with the uploaded file. Check [[error]] for detailed
...
...
framework/yii/web/UserEvent.php
View file @
147558ea
...
...
@@ -10,6 +10,7 @@ namespace yii\web;
use
yii\base\Event
;
/**
* This event class is used for Events triggered by the [[User]] class.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
...
...
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