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
3fdcf11f
Commit
3fdcf11f
authored
Apr 09, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated phpdoc
parent
79b4f4d6
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
13 additions
and
9 deletions
+13
-9
Live.php
extensions/authclient/clients/Live.php
+1
-2
Application.php
framework/base/Application.php
+5
-1
Controller.php
framework/base/Controller.php
+2
-0
Application.php
framework/console/Application.php
+0
-2
ActiveRecord.php
framework/db/ActiveRecord.php
+1
-1
BaseMailer.php
framework/mail/BaseMailer.php
+2
-0
DbManager.php
framework/rbac/DbManager.php
+1
-0
PhpManager.php
framework/rbac/PhpManager.php
+1
-0
Application.php
framework/web/Application.php
+0
-3
No files found.
extensions/authclient/clients/Live.php
View file @
3fdcf11f
...
...
@@ -90,4 +90,4 @@ class Live extends OAuth2
{
return
'Live'
;
}
}
\ No newline at end of file
}
framework/base/Application.php
View file @
3fdcf11f
...
...
@@ -12,18 +12,22 @@ use Yii;
/**
* Application is the base class for all application classes.
*
* @property \yii\web\AssetManager $assetManager The asset manager component. This property is read-only.
* @property \yii\rbac\Manager $authManager The auth manager for this application. Null is returned if auth
* manager is not configured. This property is read-only.
* @property string $basePath The root directory of the application.
* @property \yii\caching\Cache $cache The cache application component. Null if the component is not enabled.
* This property is read-only.
* @property \yii\db\Connection $db The database connection. This property is read-only.
* @property ErrorHandler $errorHandler The error handler application component. This property is read-only.
* @property \yii\web\ErrorHandler|\yii\console\ErrorHandler $errorHandler The error handler application
* component. This property is read-only.
* @property \yii\base\Formatter $formatter The formatter application component. This property is read-only.
* @property \yii\i18n\I18N $i18n The internationalization component. This property is read-only.
* @property \yii\log\Dispatcher $log The log dispatcher component. This property is read-only.
* @property \yii\mail\MailerInterface $mail The mailer interface. This property is read-only.
* @property \yii\web\Request|\yii\console\Request $request The request component. This property is read-only.
* @property \yii\web\Response|\yii\console\Response $response The response component. This property is
* read-only.
* @property string $runtimePath The directory that stores runtime files. Defaults to the "runtime"
* subdirectory under [[basePath]].
* @property string $timeZone The time zone used by this application.
...
...
framework/base/Controller.php
View file @
3fdcf11f
...
...
@@ -12,6 +12,8 @@ use Yii;
/**
* Controller is the base class for classes containing controller logic.
*
* @property Module[] $modules All ancestor modules that this controller is located within. This property is
* read-only.
* @property string $route The route (module ID, controller ID and action ID) of the current request. This
* property is read-only.
* @property string $uniqueId The controller ID that is prefixed with the module ID (if any). This property is
...
...
framework/console/Application.php
View file @
3fdcf11f
...
...
@@ -46,8 +46,6 @@ use yii\base\InvalidRouteException;
* yii help
* ~~~
*
* @property Response $response The response component. This property is read-only.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
...
...
framework/db/ActiveRecord.php
View file @
3fdcf11f
...
...
@@ -71,7 +71,7 @@ use yii\helpers\StringHelper;
*
* @method ActiveQuery hasMany(string $class, array $link) see BaseActiveRecord::hasMany() for more info
* @method ActiveQuery hasOne(string $class, array $link) see BaseActiveRecord::hasOne() for more info
*
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Carsten Brandt <mail@cebe.cc>
* @since 2.0
...
...
framework/mail/BaseMailer.php
View file @
3fdcf11f
...
...
@@ -23,6 +23,8 @@ use yii\base\MailEvent;
*
* @property View $view View instance. Note that the type of this property differs in getter and setter. See
* [[getView()]] and [[setView()]] for details.
* @property string $viewPath The directory that contains the view files for composing mail messages Defaults
* to '@app/mail'. This property is read-only.
*
* @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0
...
...
framework/rbac/DbManager.php
View file @
3fdcf11f
...
...
@@ -25,6 +25,7 @@ use yii\di\Instance;
* [[itemChildTable]] and [[assignmentTable]].
*
* @property Item[] $items The authorization items of the specific type. This property is read-only.
* @property Rule[] $rules This property is read-only.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Alexander Kochetov <creocoder@gmail.com>
...
...
framework/rbac/PhpManager.php
View file @
3fdcf11f
...
...
@@ -24,6 +24,7 @@ use yii\base\InvalidParamException;
* Use [[DbManager]] for more complex authorization data.
*
* @property Item[] $items The authorization items of the specific type. This property is read-only.
* @property Rule[] $rules This property is read-only.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Alexander Kochetov <creocoder@gmail.com>
...
...
framework/web/Application.php
View file @
3fdcf11f
...
...
@@ -13,10 +13,7 @@ use yii\base\InvalidRouteException;
/**
* 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.
* @property Request $request The request component. This property is read-only.
* @property Response $response The response component. This property is read-only.
* @property Session $session The session component. This property is read-only.
* @property User $user The user component. This property is read-only.
*
...
...
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