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
c27ac8ef
Commit
c27ac8ef
authored
Apr 26, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated phpdoc
parent
3c3ea398
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
10 additions
and
9 deletions
+10
-9
PhpDocController.php
build/controllers/PhpDocController.php
+3
-1
BaseOAuth.php
extensions/authclient/BaseOAuth.php
+2
-1
OAuthToken.php
extensions/authclient/OAuthToken.php
+1
-1
Connection.php
extensions/elasticsearch/Connection.php
+1
-0
Query.php
extensions/sphinx/Query.php
+1
-1
Controller.php
framework/base/Controller.php
+2
-2
PhpManager.php
framework/rbac/PhpManager.php
+0
-3
No files found.
build/controllers/PhpDocController.php
View file @
c27ac8ef
...
...
@@ -22,13 +22,13 @@ use yii\helpers\FileHelper;
class
PhpDocController
extends
Controller
{
public
$defaultAction
=
'property'
;
/**
* @var boolean whether to update class docs directly. Setting this to false will just output docs
* for copy and paste.
*/
public
$updateFiles
=
true
;
/**
* Generates `@property` annotations in class files from getters and setters
*
...
...
@@ -125,6 +125,7 @@ class PhpDocController extends Controller
'/build/'
,
'/docs/'
,
'/extensions/apidoc/helpers/PrettyPrinter.php'
,
'/extensions/apidoc/helpers/ApiIndexer.php'
,
'/extensions/codeception/TestCase.php'
,
'/extensions/codeception/DbTestCase.php'
,
'/extensions/composer/'
,
...
...
@@ -133,6 +134,7 @@ class PhpDocController extends Controller
'/extensions/twig/TwigSimpleFileLoader.php'
,
'/framework/BaseYii.php'
,
'/framework/Yii.php'
,
'assets/'
,
'tests/'
,
'vendor/'
,
];
...
...
extensions/authclient/BaseOAuth.php
View file @
c27ac8ef
...
...
@@ -21,7 +21,8 @@ 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. This property is read-only.
* @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.
*
* @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0
...
...
extensions/authclient/OAuthToken.php
View file @
c27ac8ef
...
...
@@ -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.
This property is read-only.
* @property string $token Token value.
* @property string $tokenSecret Token secret value.
*
* @author Paul Klimov <klimov.paul@gmail.com>
...
...
extensions/elasticsearch/Connection.php
View file @
c27ac8ef
...
...
@@ -17,6 +17,7 @@ use yii\helpers\Json;
*
* @property string $driverName Name of the DB driver. This property is read-only.
* @property boolean $isActive Whether the DB connection is established. This property is read-only.
* @property QueryBuilder $queryBuilder This property is read-only.
*
* @author Carsten Brandt <mail@cebe.cc>
* @since 2.0
...
...
extensions/sphinx/Query.php
View file @
c27ac8ef
...
...
@@ -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.
This property is read-only.
* @property Connection $connection Sphinx connection instance.
*
* @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0
...
...
framework/base/Controller.php
View file @
c27ac8ef
...
...
@@ -18,7 +18,7 @@ use Yii;
* property is read-only.
* @property string $uniqueId The controller ID that is prefixed with the module ID (if any). This property is
* read-only.
* @property View $view The view object that can be used to render views or view files.
* @property View
|\yii\web\View
$view The view object that can be used to render views or view files.
* @property string $viewPath The directory containing the view files for this controller. This property is
* read-only.
*
...
...
@@ -410,7 +410,7 @@ class Controller extends Component implements ViewContextInterface
/**
* Sets the view object to be used by this controller.
* @param View $view the view object that can be used to render views or view files.
* @param View
|\yii\web\View
$view the view object that can be used to render views or view files.
*/
public
function
setView
(
$view
)
{
...
...
framework/rbac/PhpManager.php
View file @
c27ac8ef
...
...
@@ -22,9 +22,6 @@ use Yii;
* (for example, the authorization data for a personal blog system).
* 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>
* @author Christophe Boulain <christophe.boulain@gmail.com>
...
...
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