-
-
Notifications
You must be signed in to change notification settings - Fork 6.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
56 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,7 +93,7 @@ class BaseYii | |
*/ | ||
public static function getVersion() | ||
{ | ||
return '2.0.46-dev'; | ||
return '2.0.46'; | ||
} | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,8 +32,6 @@ | |
* @property-read string $helpSummary The one-line short summary describing this controller. | ||
* @property-read array $passedOptionValues The properties corresponding to the passed options. | ||
* @property-read array $passedOptions The names of the options passed during execution. | ||
* @property Request $request | ||
* @property Response $response | ||
* | ||
* @author Qiang Xue <[email protected]> | ||
* @since 2.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,11 +28,11 @@ | |
* @property array $oldAttributes The old attribute values (name-value pairs). Note that the type of this | ||
* property differs in getter and setter. See [[getOldAttributes()]] and [[setOldAttributes()]] for details. | ||
* @property-read 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). | ||
* returned if the primary key is composite or `$asArray` is `true`. A string is returned otherwise (null will be | ||
* returned if the key value is null). | ||
* @property-read 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). | ||
* if the primary key is composite or `$asArray` is `true`. A string is returned otherwise (null will be returned | ||
* if the key value is null). | ||
* @property-read array $relatedRecords An array of related records indexed by relation names. | ||
* | ||
* @author Qiang Xue <[email protected]> | ||
|
@@ -1757,7 +1757,7 @@ private function setRelationDependencies($name, $relation, $viaRelationName = nu | |
|
||
/** | ||
* @param string $attribute | ||
* @param mixed $value | ||
* @param mixed $value | ||
* @return bool | ||
*/ | ||
private function isAttributeDirty($attribute, $value) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ | |
/** | ||
* InlineValidator represents a validator which is defined as a method in the object being validated. | ||
* | ||
* | ||
* @author Qiang Xue <[email protected]> | ||
* @since 2.0 | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,9 +32,8 @@ | |
* ['ip_address', 'ip', 'expandIPv6' => true], // expands IPv6 address to a full notation format | ||
* ``` | ||
* | ||
* @property array $ranges The IPv4 or IPv6 ranges that are allowed or forbidden. See [[setRanges()]] for | ||
* detailed description. Note that the type of this property differs in getter and setter. See [[getRanges()]] | ||
* and [[setRanges()]] for details. | ||
* @property array $ranges The IPv4 or IPv6 ranges that are allowed or forbidden. Note that the type of this | ||
* property differs in getter and setter. See [[getRanges()]] and [[setRanges()]] for details. | ||
* | ||
* @author Dmitry Naumenko <[email protected]> | ||
* @since 2.0.7 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,7 @@ | |
* For more details and usage information on Validator, see the [guide article on validators](guide:input-validation). | ||
* | ||
* @property-read array $attributeNames Attribute names. | ||
* @property-read array $validationAttributes List of attribute names. | ||
* @property-read array|null $validationAttributes List of attribute names. | ||
* | ||
* @author Qiang Xue <[email protected]> | ||
* @since 2.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
/** | ||
* CompositeUrlRule is the base class for URL rule classes that consist of multiple simpler rules. | ||
* | ||
* @property-read null|int $createUrlStatus Status of the URL creation after the last [[createUrl()]] call. | ||
* @property-read int|null $createUrlStatus Status of the URL creation after the last [[createUrl()]] call. | ||
* `null` if rule does not provide info about create status. | ||
* | ||
* @author Qiang Xue <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,9 +17,6 @@ | |
* | ||
* For more details and usage information on Controller, see the [guide article on controllers](guide:structure-controllers). | ||
* | ||
* @property Request $request | ||
* @property Response $response | ||
* | ||
* @author Qiang Xue <[email protected]> | ||
* @since 2.0 | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ | |
* ] | ||
* ``` | ||
* | ||
* @property-read null|int $createUrlStatus Status of the URL creation after the last [[createUrl()]] call. | ||
* @property-read int|null $createUrlStatus Status of the URL creation after the last [[createUrl()]] call. | ||
* `null` if rule does not provide info about create status. | ||
* | ||
* @author Qiang Xue <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters