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
1e754273
Commit
1e754273
authored
Mar 24, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated classmap and phpdoc
parent
777f4a28
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
20 additions
and
8 deletions
+20
-8
ClassmapController.php
build/controllers/ClassmapController.php
+1
-1
PhpDocController.php
build/controllers/PhpDocController.php
+1
-1
BaseOAuth.php
extensions/authclient/BaseOAuth.php
+1
-2
OAuthToken.php
extensions/authclient/OAuthToken.php
+1
-1
ConfigPanel.php
extensions/debug/panels/ConfigPanel.php
+1
-0
Query.php
extensions/sphinx/Query.php
+1
-1
Application.php
framework/base/Application.php
+2
-1
Module.php
framework/base/Module.php
+0
-1
Theme.php
framework/base/Theme.php
+5
-0
classes.php
framework/classes.php
+0
-0
Container.php
framework/di/Container.php
+3
-0
ServiceLocator.php
framework/di/ServiceLocator.php
+3
-0
Request.php
framework/web/Request.php
+1
-0
No files found.
build/controllers/ClassmapController.php
View file @
1e754273
...
...
@@ -60,7 +60,7 @@ class ClassmapController extends Controller
throw
new
Exception
(
"Something wrong:
$file
\n
"
);
}
$path
=
str_replace
(
'\\'
,
'/'
,
substr
(
$file
,
strlen
(
$root
)));
$map
[
$path
]
=
"
\t
'yii"
.
substr
(
str_replace
(
'/'
,
'\\'
,
$path
),
0
,
-
4
)
.
"' => YII_PATH . '
$path
',"
;
$map
[
$path
]
=
"
'yii"
.
substr
(
str_replace
(
'/'
,
'\\'
,
$path
),
0
,
-
4
)
.
"' => YII_PATH . '
$path
',"
;
}
ksort
(
$map
);
$map
=
implode
(
"
\n
"
,
$map
);
...
...
build/controllers/PhpDocController.php
View file @
1e754273
...
...
@@ -61,7 +61,7 @@ class PhpDocController extends Controller
'/extensions/codeception/DbTestCase.php'
,
'/extensions/composer/'
,
'/extensions/gii/components/DiffRendererHtmlInline.php'
,
'/extensions/gii/generators/extension/
templates
/*'
,
'/extensions/gii/generators/extension/
default
/*'
,
'/extensions/twig/TwigSimpleFileLoader.php'
,
'/framework/BaseYii.php'
,
'/framework/Yii.php'
,
...
...
extensions/authclient/BaseOAuth.php
View file @
1e754273
...
...
@@ -21,8 +21,7 @@ use yii\helpers\Json;
* getter and setter. See [[getAccessToken()]] and [[setAccessToken()]] for details.
* @property array $curlOptions CURL options. This property is read-only.
* @property string $returnUrl Return URL.
* @property signature\BaseMethod $signatureMethod Signature method instance. Note that the type of this
* property differs in getter and setter. See [[getSignatureMethod()]] and [[setSignatureMethod()]] for details.
* @property signature\BaseMethod $signatureMethod Signature method instance. This property is read-only.
*
* @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0
...
...
extensions/authclient/OAuthToken.php
View file @
1e754273
...
...
@@ -18,7 +18,7 @@ use yii\base\Object;
* @property boolean $isExpired Is token expired. This property is read-only.
* @property boolean $isValid Is token valid. This property is read-only.
* @property array $params This property is read-only.
* @property string $token Token value.
* @property string $token Token value.
This property is read-only.
* @property string $tokenSecret Token secret value.
*
* @author Paul Klimov <klimov.paul@gmail.com>
...
...
extensions/debug/panels/ConfigPanel.php
View file @
1e754273
...
...
@@ -14,6 +14,7 @@ use yii\debug\Panel;
* Debugger panel that collects and displays application configuration and environment.
*
* @property array $extensions This property is read-only.
* @property array $phpInfo This property is read-only.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
...
...
extensions/sphinx/Query.php
View file @
1e754273
...
...
@@ -41,7 +41,7 @@ use yii\db\QueryTrait;
*
* Warning: even if you do not set any query limit, implicit LIMIT 0,20 is present by default!
*
* @property Connection $connection Sphinx connection instance.
* @property Connection $connection Sphinx connection instance.
This property is read-only.
*
* @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0
...
...
framework/base/Application.php
View file @
1e754273
...
...
@@ -14,7 +14,8 @@ use yii\web\HttpException;
/**
* Application is the base class for all application classes.
*
* @property \yii\rbac\Manager $authManager The auth manager for this application. 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.
...
...
framework/base/Module.php
View file @
1e754273
...
...
@@ -25,7 +25,6 @@ use yii\di\ServiceLocator;
* with '@') and the array values are the corresponding paths or aliases. See [[setAliases()]] for an example.
* This property is write-only.
* @property string $basePath The root directory of the module.
* @property array $components The components (indexed by their IDs).
* @property string $controllerPath The directory that contains the controller classes. This property is
* read-only.
* @property string $layoutPath The root directory of layout files. Defaults to "[[viewPath]]/layouts".
...
...
framework/base/Theme.php
View file @
1e754273
...
...
@@ -61,6 +61,11 @@ use yii\helpers\FileHelper;
* that contains the entry script of the application. If your theme is designed to handle modules,
* you may configure the [[pathMap]] property like described above.
*
* @property string $basePath The root path of this theme. All resources of this theme are located under this
* directory.
* @property string $baseUrl The base URL (without ending slash) for this theme. All resources of this theme
* are considered to be under this base URL. This property is read-only.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
...
...
framework/classes.php
View file @
1e754273
This diff is collapsed.
Click to expand it.
framework/di/Container.php
View file @
1e754273
...
...
@@ -87,6 +87,9 @@ use yii\base\InvalidConfigException;
* $lister = new UserLister($finder);
* ```
*
* @property array $definitions The list of the object definitions or the loaded shared objects (type or ID =>
* definition or instance). This property is read-only.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
...
...
framework/di/ServiceLocator.php
View file @
1e754273
...
...
@@ -41,6 +41,9 @@ use yii\base\InvalidConfigException;
*
* Because [[\yii\base\Module]] extends from ServiceLocator, modules and the application are all service locators.
*
* @property array $components The list of the component definitions or the loaded component instances (ID =>
* definition or instance). This property is read-only.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
...
...
framework/web/Request.php
View file @
1e754273
...
...
@@ -53,6 +53,7 @@ use yii\helpers\StringHelper;
* @property boolean $isHead Whether this is a HEAD request. This property is read-only.
* @property boolean $isOptions Whether this is a OPTIONS request. This property is read-only.
* @property boolean $isPatch Whether this is a PATCH request. This property is read-only.
* @property boolean $isPjax Whether this is a PJAX request. This property is read-only.
* @property boolean $isPost Whether this is a POST request. This property is read-only.
* @property boolean $isPut Whether this is a PUT request. This property is read-only.
* @property boolean $isSecureConnection If the request is sent via secure channel (https). This property is
...
...
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