@@ -80,33 +80,33 @@ |
||
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
83 | - * Method combines both [[setHasCache()]] and [[getHasCache()]] methods to retrieve value identified by a $key, |
|
84 | - * or to store the result of $closure execution if there is no cache available for the $key. |
|
85 | - * |
|
86 | - * Usage example: |
|
87 | - * |
|
88 | - * ```php |
|
89 | - * use CacheableTrait; |
|
90 | - * |
|
91 | - * public function getTopProducts($count = 10) |
|
92 | - * { |
|
93 | - * return $this->getOrSetHasCache(['top-n-products', 'n' => $count], function ($cache) use ($count) { |
|
94 | - * return Products::find()->mostPopular()->limit(10)->all(); |
|
95 | - * }, 1000); |
|
96 | - * } |
|
97 | - * ``` |
|
98 | - * |
|
99 | - * @param mixed $key a key identifying the value to be cached. This can be a simple string or |
|
100 | - * a complex data structure consisting of factors representing the key. |
|
101 | - * @param \Closure $closure the closure that will be used to generate a value to be cached. |
|
102 | - * In case $closure returns `false`, the value will not be cached. |
|
103 | - * @param int $duration default duration in seconds before the cache will expire. If not set, |
|
104 | - * [[defaultDuration]] value will be used. |
|
105 | - * @param Dependency $dependency dependency of the cached item. If the dependency changes, |
|
106 | - * the corresponding value in the cache will be invalidated when it is fetched via [[get()]]. |
|
107 | - * This parameter is ignored if [[serializer]] is `false`. |
|
108 | - * @return mixed result of $closure execution |
|
109 | - */ |
|
83 | + * Method combines both [[setHasCache()]] and [[getHasCache()]] methods to retrieve value identified by a $key, |
|
84 | + * or to store the result of $closure execution if there is no cache available for the $key. |
|
85 | + * |
|
86 | + * Usage example: |
|
87 | + * |
|
88 | + * ```php |
|
89 | + * use CacheableTrait; |
|
90 | + * |
|
91 | + * public function getTopProducts($count = 10) |
|
92 | + * { |
|
93 | + * return $this->getOrSetHasCache(['top-n-products', 'n' => $count], function ($cache) use ($count) { |
|
94 | + * return Products::find()->mostPopular()->limit(10)->all(); |
|
95 | + * }, 1000); |
|
96 | + * } |
|
97 | + * ``` |
|
98 | + * |
|
99 | + * @param mixed $key a key identifying the value to be cached. This can be a simple string or |
|
100 | + * a complex data structure consisting of factors representing the key. |
|
101 | + * @param \Closure $closure the closure that will be used to generate a value to be cached. |
|
102 | + * In case $closure returns `false`, the value will not be cached. |
|
103 | + * @param int $duration default duration in seconds before the cache will expire. If not set, |
|
104 | + * [[defaultDuration]] value will be used. |
|
105 | + * @param Dependency $dependency dependency of the cached item. If the dependency changes, |
|
106 | + * the corresponding value in the cache will be invalidated when it is fetched via [[get()]]. |
|
107 | + * This parameter is ignored if [[serializer]] is `false`. |
|
108 | + * @return mixed result of $closure execution |
|
109 | + */ |
|
110 | 110 | public function getOrSetHasCache($key, \Closure $closure, $duration = null, $dependency = null) |
111 | 111 | { |
112 | 112 | if (($value = $this->getHasCache($key)) !== false) { |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | |
70 | 70 | public function isCli() |
71 | 71 | { |
72 | - return $this->getSapiName() === 'cli'; |
|
72 | + return $this->getSapiName() === 'cli'; |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | /** |
@@ -128,14 +128,14 @@ discard block |
||
128 | 128 | { |
129 | 129 | if ($this->_configArray === null) { |
130 | 130 | if (!file_exists($this->configFile)) { |
131 | - if (!$this->isCli()) { |
|
132 | - throw new Exception("Unable to load the config file '".$this->configFile."'."); |
|
133 | - } |
|
131 | + if (!$this->isCli()) { |
|
132 | + throw new Exception("Unable to load the config file '".$this->configFile."'."); |
|
133 | + } |
|
134 | 134 | |
135 | - $config = ['id' => 'consoleapp', 'basePath' => dirname(__DIR__)]; |
|
135 | + $config = ['id' => 'consoleapp', 'basePath' => dirname(__DIR__)]; |
|
136 | 136 | |
137 | 137 | } else { |
138 | - $config = require $this->configFile; |
|
138 | + $config = require $this->configFile; |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | if (!is_array($config)) { |
@@ -113,7 +113,7 @@ |
||
113 | 113 | */ |
114 | 114 | public static function hashName($fileName) |
115 | 115 | { |
116 | - return sprintf('%s', hash('crc32b', uniqid($fileName, true))); |
|
116 | + return sprintf('%s', hash('crc32b', uniqid($fileName, true))); |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | /** |
@@ -266,7 +266,7 @@ discard block |
||
266 | 266 | return Yii::getAlias('@' . str_replace('\\', '/', $this->controllerNamespace), false); |
267 | 267 | } |
268 | 268 | |
269 | - // STATIC METHODS |
|
269 | + // STATIC METHODS |
|
270 | 270 | |
271 | 271 | /** |
272 | 272 | * Internal used to register the translations from the translation array or set alias paths. |
@@ -304,11 +304,11 @@ discard block |
||
304 | 304 | */ |
305 | 305 | public static function registerTranslation($prefix, $basePath, array $fileMap) |
306 | 306 | { |
307 | - Yii::$app->i18n->translations[$prefix] = [ |
|
308 | - 'class' => 'yii\i18n\PhpMessageSource', |
|
309 | - 'basePath' => $basePath, |
|
310 | - 'fileMap' => $fileMap, |
|
311 | - ]; |
|
307 | + Yii::$app->i18n->translations[$prefix] = [ |
|
308 | + 'class' => 'yii\i18n\PhpMessageSource', |
|
309 | + 'basePath' => $basePath, |
|
310 | + 'fileMap' => $fileMap, |
|
311 | + ]; |
|
312 | 312 | } |
313 | 313 | |
314 | 314 | /** |
@@ -318,9 +318,9 @@ discard block |
||
318 | 318 | */ |
319 | 319 | public static function staticBasePath() |
320 | 320 | { |
321 | - $class = new \ReflectionClass(get_called_class()); |
|
321 | + $class = new \ReflectionClass(get_called_class()); |
|
322 | 322 | |
323 | - return dirname($class->getFileName()); |
|
323 | + return dirname($class->getFileName()); |
|
324 | 324 | } |
325 | 325 | |
326 | 326 | /** |
@@ -333,7 +333,7 @@ discard block |
||
333 | 333 | */ |
334 | 334 | public static function baseT($category, $message, array $params = [], $language = null) |
335 | 335 | { |
336 | - static::onLoad(); |
|
337 | - return Yii::t($category, $message, $params, $language); |
|
336 | + static::onLoad(); |
|
337 | + return Yii::t($category, $message, $params, $language); |
|
338 | 338 | } |
339 | 339 | } |