mirror of
https://github.com/yiisoft/yii2.git
synced 2025-10-27 11:46:01 +08:00
Fix #20570: Fix @var annotation for UrlManager::$cache
This commit is contained in:
@ -39,6 +39,7 @@ Yii Framework 2 Change Log
|
|||||||
- Bug #20541: Remove deprecated caching components: `XCache` and `ZendDataCache`, and update related tests and documentation (terabytesoftw)
|
- Bug #20541: Remove deprecated caching components: `XCache` and `ZendDataCache`, and update related tests and documentation (terabytesoftw)
|
||||||
- Bug #20548: Fix PHP `8.5` `null` array offset deprecation warnings (terabytesoftw)
|
- Bug #20548: Fix PHP `8.5` `null` array offset deprecation warnings (terabytesoftw)
|
||||||
- Enh #19526: Add the `convertIniSizeToBytes` method to `BaseStringHelper` (max-s-lab)
|
- Enh #19526: Add the `convertIniSizeToBytes` method to `BaseStringHelper` (max-s-lab)
|
||||||
|
- Bug #20570: Fix `@var` annotation for `UrlManager::$cache` (max-s-lab)
|
||||||
- Bug #20571: Fix `@var` annotation for `yii\web\Response::$stream` (max-s-lab)
|
- Bug #20571: Fix `@var` annotation for `yii\web\Response::$stream` (max-s-lab)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -119,7 +119,7 @@ class UrlManager extends Component
|
|||||||
*/
|
*/
|
||||||
public $routeParam = 'r';
|
public $routeParam = 'r';
|
||||||
/**
|
/**
|
||||||
* @var CacheInterface|array|string|bool the cache object or the application component ID of the cache object.
|
* @var CacheInterface|array|string|bool|null the cache object or the application component ID of the cache object.
|
||||||
* This can also be an array that is used to create a [[CacheInterface]] instance in case you do not want to use
|
* This can also be an array that is used to create a [[CacheInterface]] instance in case you do not want to use
|
||||||
* an application component.
|
* an application component.
|
||||||
* Compiled URL rules will be cached through this cache object, if it is available.
|
* Compiled URL rules will be cached through this cache object, if it is available.
|
||||||
|
|||||||
Reference in New Issue
Block a user