Commit 943bf889 by Qiang Xue

doc fix.

parent 513e98cf
...@@ -44,22 +44,26 @@ class PhpDocController extends Controller ...@@ -44,22 +44,26 @@ class PhpDocController extends Controller
$except = []; $except = [];
if ($root === null) { if ($root === null) {
$root = dirname(dirname(YII_PATH)); $root = dirname(dirname(YII_PATH));
Yii::setAlias('@yii/bootstrap', $root . '/extensions/bootstrap'); $extension = "$root/extensions/yii";
Yii::setAlias('@yii/debug', $root . '/extensions/debug'); Yii::setAlias('@yii/authclient', "$extension/authclient");
Yii::setAlias('@yii/elasticsearch', $root . '/extensions/elasticsearch'); Yii::setAlias('@yii/bootstrap', "$extension/bootstrap");
Yii::setAlias('@yii/gii', $root . '/extensions/gii'); Yii::setAlias('@yii/debug', "$extension/debug");
Yii::setAlias('@yii/jui', $root . '/extensions/jui'); Yii::setAlias('@yii/elasticsearch', "$extension/elasticsearch");
Yii::setAlias('@yii/redis', $root . '/extensions/redis'); Yii::setAlias('@yii/gii', "$extension/gii");
Yii::setAlias('@yii/smarty', $root . '/extensions/smarty'); Yii::setAlias('@yii/jui', "$extension/jui");
Yii::setAlias('@yii/sphinx', $root . '/extensions/sphinx'); Yii::setAlias('@yii/mongodb', "$extension/mongodb");
Yii::setAlias('@yii/swiftmailer', $root . '/extensions/swiftmailer'); Yii::setAlias('@yii/redis', "$extension/redis");
Yii::setAlias('@yii/twig', $root . '/extensions/twig'); Yii::setAlias('@yii/smarty', "$extension/smarty");
Yii::setAlias('@yii/sphinx', "$extension/sphinx");
Yii::setAlias('@yii/swiftmailer', "$extension/swiftmailer");
$except = [ $except = [
'/apps/', '/apps/',
'/build/', '/build/',
'/docs/', '/docs/',
'/extensions/composer/', '/extensions/yii/codeception/',
'/extensions/yii/composer/',
'/extensions/yii/twig/',
'/tests/', '/tests/',
'/vendor/', '/vendor/',
]; ];
...@@ -375,4 +379,4 @@ class PhpDocController extends Controller ...@@ -375,4 +379,4 @@ class PhpDocController extends Controller
{ {
return isset($prop['property']) ? $prop['property'][$param] : (isset($prop['get']) ? $prop['get'][$param] : $prop['set'][$param]); return isset($prop['property']) ? $prop['property'][$param] : (isset($prop['get']) ? $prop['get'][$param] : $prop['set'][$param]);
} }
} }
\ No newline at end of file
...@@ -48,6 +48,9 @@ use Yii; ...@@ -48,6 +48,9 @@ use Yii;
* @see Collection * @see Collection
* @see \yii\authclient\widgets\Choice * @see \yii\authclient\widgets\Choice
* *
* @property string $cancelUrl Cancel URL.
* @property string $successUrl Successful URL.
*
* @author Paul Klimov <klimov.paul@gmail.com> * @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0 * @since 2.0
*/ */
......
...@@ -18,13 +18,12 @@ use yii\helpers\StringHelper; ...@@ -18,13 +18,12 @@ use yii\helpers\StringHelper;
* *
* @see ClientInterface * @see ClientInterface
* *
* @property string $id auth service id. * @property string $id Service id.
* @property string $name auth service name. * @property string $name Service name.
* @property string $title auth service title. * @property array $normalizeUserAttributeMap Normalize user attribute map.
* @property array $userAttributes authenticated user attributes. * @property string $title Service title.
* @property array $normalizeUserAttributeMap map used to normalize user attributes fetched from * @property array $userAttributes List of user attributes.
* external auth service in format: rawAttributeName => normalizedAttributeName. * @property array $viewOptions View options in format: optionName => optionValue.
* @property array $viewOptions view options in format: optionName => optionValue.
* *
* @author Paul Klimov <klimov.paul@gmail.com> * @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0 * @since 2.0
......
...@@ -17,6 +17,13 @@ use yii\helpers\Json; ...@@ -17,6 +17,13 @@ use yii\helpers\Json;
* *
* @see http://oauth.net/ * @see http://oauth.net/
* *
* @property OAuthToken $accessToken Auth token instance. Note that the type of this property differs in
* 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.
*
* @author Paul Klimov <klimov.paul@gmail.com> * @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0 * @since 2.0
*/ */
......
...@@ -35,7 +35,7 @@ use Yii; ...@@ -35,7 +35,7 @@ use Yii;
* ] * ]
* ~~~ * ~~~
* *
* @property array $clients list of Auth clients with their configuration in format: 'clientId' => [...] * @property ClientInterface[] $clients List of auth clients. This property is read-only.
* *
* @author Paul Klimov <klimov.paul@gmail.com> * @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0 * @since 2.0
......
...@@ -12,9 +12,14 @@ use yii\base\Object; ...@@ -12,9 +12,14 @@ use yii\base\Object;
/** /**
* Token represents OAuth token. * Token represents OAuth token.
* *
* @property array $params token parameters. * @property integer $expireDuration Token expiration duration. Note that the type of this property differs in
* @property string $token token value. * getter and setter. See [[getExpireDuration()]] and [[setExpireDuration()]] for details.
* @property string $tokenSecret token secret value. * @property string $expireDurationParamKey Expire duration param key.
* @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 $tokenSecret Token secret value.
* *
* @author Paul Klimov <klimov.paul@gmail.com> * @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0 * @since 2.0
......
...@@ -36,9 +36,9 @@ use Yii; ...@@ -36,9 +36,9 @@ use Yii;
* *
* @see http://openid.net/ * @see http://openid.net/
* *
* @property string $returnUrl authentication return URL. * @property string $claimedId Claimed identifier (identity).
* @property string $claimedId claimed identifier (identity). * @property string $returnUrl Authentication return URL.
* @property string $trustRoot client trust root (realm), by default [[\yii\web\Request::hostInfo]] value will be used. * @property string $trustRoot Client trust root (realm).
* *
* @author Paul Klimov <klimov.paul@gmail.com> * @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0 * @since 2.0
......
...@@ -12,8 +12,6 @@ use yii\base\Object; ...@@ -12,8 +12,6 @@ use yii\base\Object;
/** /**
* BaseMethod is a base class for the OAuth signature methods. * BaseMethod is a base class for the OAuth signature methods.
* *
* @property string $name method canonical name. This property is read-only.
*
* @author Paul Klimov <klimov.paul@gmail.com> * @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0 * @since 2.0
*/ */
......
...@@ -15,8 +15,8 @@ use yii\base\NotSupportedException; ...@@ -15,8 +15,8 @@ use yii\base\NotSupportedException;
* *
* Note: This class require PHP "OpenSSL" extension({@link http://php.net/manual/en/book.openssl.php}). * Note: This class require PHP "OpenSSL" extension({@link http://php.net/manual/en/book.openssl.php}).
* *
* @property string $privateCertificate OpenSSL private key certificate content. * @property string $privateCertificate Private key certificate content.
* @property string $publicCertificate OpenSSL public key certificate content. * @property string $publicCertificate Public key certificate content.
* *
* @author Paul Klimov <klimov.paul@gmail.com> * @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0 * @since 2.0
......
...@@ -42,8 +42,8 @@ use yii\authclient\ClientInterface; ...@@ -42,8 +42,8 @@ use yii\authclient\ClientInterface;
* *
* @see \yii\authclient\AuthAction * @see \yii\authclient\AuthAction
* *
* @property ClientInterface[] $providers auth providers list. * @property array $baseAuthUrl Base auth URL configuration. This property is read-only.
* @property array $baseAuthUrl configuration for the external services base authentication URL. * @property ClientInterface[] $clients Auth providers. This property is read-only.
* *
* @author Paul Klimov <klimov.paul@gmail.com> * @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0 * @since 2.0
......
...@@ -11,7 +11,7 @@ use yii\base\Component; ...@@ -11,7 +11,7 @@ use yii\base\Component;
/** /**
* Base mathcer class for all matchers that will be used with filter. * Base mathcer class for all matchers that will be used with filter.
* *
* @author Mark Jebri <mark.github@yandex.ru> * @author Mark Jebri <mark.github@yandex.ru>
* @since 2.0 * @since 2.0
*/ */
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
namespace yii\debug\components\search\matches; namespace yii\debug\components\search\matches;
/** /**
* *
* @author Mark Jebri <mark.github@yandex.ru> * @author Mark Jebri <mark.github@yandex.ru>
* @since 2.0 * @since 2.0
*/ */
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
namespace yii\debug\components\search\matches; namespace yii\debug\components\search\matches;
/** /**
* *
* @author Mark Jebri <mark.github@yandex.ru> * @author Mark Jebri <mark.github@yandex.ru>
* @since 2.0 * @since 2.0
*/ */
......
...@@ -29,6 +29,8 @@ use yii\db\ActiveQueryTrait; ...@@ -29,6 +29,8 @@ use yii\db\ActiveQueryTrait;
* $customers = Customer::find()->with('orders')->asArray()->all(); * $customers = Customer::find()->with('orders')->asArray()->all();
* ~~~ * ~~~
* *
* @property Collection $collection Collection instance. This property is read-only.
*
* @author Paul Klimov <klimov.paul@gmail.com> * @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0 * @since 2.0
*/ */
......
...@@ -58,9 +58,10 @@ use yii\helpers\Json; ...@@ -58,9 +58,10 @@ use yii\helpers\Json;
* even if they are plain strings. However if you have other columns, containing [[\MongoId]], you * even if they are plain strings. However if you have other columns, containing [[\MongoId]], you
* should take care of possible typecast on your own. * should take care of possible typecast on your own.
* *
* @property string $name name of this collection. This property is read-only. * @property string $fullName Full name of this collection, including database name. This property is
* @property string $fullName full name of this collection, including database name. This property is read-only. * read-only.
* @property array $lastError last error information. This property is read-only. * @property array $lastError Last error information. This property is read-only.
* @property string $name Name of this collection. This property is read-only.
* *
* @author Paul Klimov <klimov.paul@gmail.com> * @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0 * @since 2.0
......
...@@ -63,6 +63,8 @@ use Yii; ...@@ -63,6 +63,8 @@ use Yii;
* ] * ]
* ~~~ * ~~~
* *
* @property Database $database Database instance. This property is read-only.
* @property file\Collection $fileCollection Mongo GridFS collection instance. This property is read-only.
* @property boolean $isActive Whether the Mongo connection is established. This property is read-only. * @property boolean $isActive Whether the Mongo connection is established. This property is read-only.
* *
* @author Paul Klimov <klimov.paul@gmail.com> * @author Paul Klimov <klimov.paul@gmail.com>
......
...@@ -14,7 +14,8 @@ use yii\helpers\Json; ...@@ -14,7 +14,8 @@ use yii\helpers\Json;
/** /**
* Database represents the Mongo database information. * Database represents the Mongo database information.
* *
* @property string $name name of this database. This property is read-only. * @property file\Collection $fileCollection Mongo GridFS collection. This property is read-only.
* @property string $name Name of this database. This property is read-only.
* *
* @author Paul Klimov <klimov.paul@gmail.com> * @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0 * @since 2.0
......
...@@ -31,6 +31,8 @@ use Yii; ...@@ -31,6 +31,8 @@ use Yii;
* $rows = $query->all(); * $rows = $query->all();
* ~~~ * ~~~
* *
* @property Collection $collection Collection instance. This property is read-only.
*
* @author Paul Klimov <klimov.paul@gmail.com> * @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0 * @since 2.0
*/ */
......
...@@ -29,6 +29,8 @@ use yii\db\ActiveQueryTrait; ...@@ -29,6 +29,8 @@ use yii\db\ActiveQueryTrait;
* $images = ImageFile::find()->with('tags')->asArray()->all(); * $images = ImageFile::find()->with('tags')->asArray()->all();
* ~~~ * ~~~
* *
* @property Collection $collection Collection instance. This property is read-only.
*
* @author Paul Klimov <klimov.paul@gmail.com> * @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0 * @since 2.0
*/ */
......
...@@ -36,14 +36,8 @@ use yii\web\UploadedFile; ...@@ -36,14 +36,8 @@ use yii\web\UploadedFile;
* *
* Note: [[newFileContent]] always takes precedence over [[file]]. * Note: [[newFileContent]] always takes precedence over [[file]].
* *
* @property \MongoId|string $_id primary key. * @property null|string $fileContent File content. This property is read-only.
* @property string $filename name of stored file. * @property resource $fileResource File stream resource. This property is read-only.
* @property \MongoDate $uploadDate file upload date.
* @property integer $length file size.
* @property integer $chunkSize file chunk size.
* @property string $md5 file md5 hash.
* @property \MongoGridFSFile|\yii\web\UploadedFile|string $file associated file.
* @property string $newFileContent new file content.
* *
* @author Paul Klimov <klimov.paul@gmail.com> * @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0 * @since 2.0
......
...@@ -17,8 +17,7 @@ use Yii; ...@@ -17,8 +17,7 @@ use Yii;
* *
* File collection inherits all interface from regular [[\yii\mongo\Collection]], adding methods to store files. * File collection inherits all interface from regular [[\yii\mongo\Collection]], adding methods to store files.
* *
* @property \yii\mongo\Collection $chunkCollection file chunks Mongo collection. This property is read-only. * @property \yii\mongodb\Collection $chunkCollection Mongo collection instance. This property is read-only.
* @method \MongoGridFSCursor find() returns a cursor for the search results.
* *
* @author Paul Klimov <klimov.paul@gmail.com> * @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0 * @since 2.0
......
...@@ -16,6 +16,8 @@ use Yii; ...@@ -16,6 +16,8 @@ use Yii;
* Found files will be represented as arrays of file document attributes with * Found files will be represented as arrays of file document attributes with
* additional 'file' key, which stores [[\MongoGridFSFile]] instance. * additional 'file' key, which stores [[\MongoGridFSFile]] instance.
* *
* @property Collection $collection Collection instance. This property is read-only.
*
* @author Paul Klimov <klimov.paul@gmail.com> * @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0 * @since 2.0
*/ */
......
...@@ -22,18 +22,6 @@ use yii\helpers\StringHelper; ...@@ -22,18 +22,6 @@ use yii\helpers\StringHelper;
* Warning: optimistic lock will NOT work in case of updating fields (not attributes) for the * Warning: optimistic lock will NOT work in case of updating fields (not attributes) for the
* runtime indexes! * runtime indexes!
* *
* @property array $dirtyAttributes The changed attribute values (name-value pairs). This property is
* read-only.
* @property boolean $isNewRecord Whether the record is new and should be inserted when calling [[save()]].
* @property array $oldAttributes The old attribute values (name-value pairs).
* @property mixed $oldPrimaryKey The old primary key value. An array (column name => column value) is
* returned if the primary key is composite. A string is returned otherwise (null will be returned if the key
* value is null). This property is read-only.
* @property array $relatedRecords An array of the populated related records indexed by relation names. This property is
* read-only.
* @property mixed $primaryKey The primary key value. An array (column name => column value) is returned if
* the primary key is composite. A string is returned otherwise (null will be returned if the key value is null).
* This property is read-only.
* @property string $snippet Snippet value. * @property string $snippet Snippet value.
* @property string $snippetSource Snippet source string. This property is read-only. * @property string $snippetSource Snippet source string. This property is read-only.
* *
......
...@@ -30,11 +30,11 @@ use yii\helpers\Inflector; ...@@ -30,11 +30,11 @@ use yii\helpers\Inflector;
* @property mixed $oldPrimaryKey The old primary key value. An array (column name => column value) is * @property mixed $oldPrimaryKey The old primary key value. An array (column name => column value) is
* returned if the primary key is composite. A string is returned otherwise (null will be returned if the key * returned if the primary key is composite. A string is returned otherwise (null will be returned if the key
* value is null). This property is read-only. * value is null). This property is read-only.
* @property array $relatedRecords An array of the populated related records indexed by relation names. This property is
* read-only.
* @property mixed $primaryKey The primary key value. An array (column name => column value) is returned if * @property mixed $primaryKey The primary key value. An array (column name => column value) is returned if
* the primary key is composite. A string is returned otherwise (null will be returned if the key value is null). * the primary key is composite. A string is returned otherwise (null will be returned if the key value is null).
* This property is read-only. * This property is read-only.
* @property array $relatedRecords An array of related records indexed by relation names. This property is
* read-only.
* *
* @author Qiang Xue <qiang.xue@gmail.com> * @author Qiang Xue <qiang.xue@gmail.com>
* @author Carsten Brandt <mail@cebe.cc> * @author Carsten Brandt <mail@cebe.cc>
......
...@@ -15,6 +15,8 @@ use yii\db\ColumnSchema; ...@@ -15,6 +15,8 @@ use yii\db\ColumnSchema;
* *
* @todo mapping from physical types to abstract types * @todo mapping from physical types to abstract types
* *
* @property string $defaultSchema Default schema.
*
* @author Qiang Xue <qiang.xue@gmail.com> * @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0 * @since 2.0
*/ */
......
...@@ -50,6 +50,7 @@ use yii\helpers\StringHelper; ...@@ -50,6 +50,7 @@ use yii\helpers\StringHelper;
* @property boolean $isPut Whether this is a PUT 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 * @property boolean $isSecureConnection If the request is sent via secure channel (https). This property is
* read-only. * read-only.
* @property string $maskedCsrfToken The masked CSRF token. This property is read-only.
* @property string $method Request method, such as GET, POST, HEAD, PUT, PATCH, DELETE. The value returned is * @property string $method Request method, such as GET, POST, HEAD, PUT, PATCH, DELETE. The value returned is
* turned into upper case. This property is read-only. * turned into upper case. This property is read-only.
* @property array $patch The PATCH request parameter values. This property is read-only. * @property array $patch The PATCH request parameter values. This property is read-only.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment