Update Cache.php

Fixed an example of using buildKey in the doc
This commit is contained in:
votintsev
2013-05-26 13:33:35 +04:00
parent 2516176e44
commit ead914176f

View File

@@ -94,7 +94,7 @@ abstract class Cache extends Component implements \ArrayAccess
* The following example builds a cache key using three parameters:
*
* ~~~
* $key = $cache->buildKey($className, $method, $id);
* $key = $cache->buildKey(array($className, $method, $id));
* ~~~
*
* @param array|string $key the key to be normalized