@@ -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. 0 means never expire. |
|
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. 0 means never expire. |
|
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) { |
@@ -12,9 +12,9 @@ |
||
12 | 12 | */ |
13 | 13 | class Place extends BaseThing implements PlaceInterface |
14 | 14 | { |
15 | - /** |
|
16 | - * @inheritdoc |
|
17 | - */ |
|
15 | + /** |
|
16 | + * @inheritdoc |
|
17 | + */ |
|
18 | 18 | public function typeDefintion() |
19 | 19 | { |
20 | 20 | return 'Place'; |
@@ -12,9 +12,9 @@ |
||
12 | 12 | */ |
13 | 13 | class Organization extends BaseThing implements OrganizationInterface |
14 | 14 | { |
15 | - /** |
|
16 | - * @inheritdoc |
|
17 | - */ |
|
15 | + /** |
|
16 | + * @inheritdoc |
|
17 | + */ |
|
18 | 18 | public function typeDefintion() |
19 | 19 | { |
20 | 20 | return 'Organization'; |
@@ -12,9 +12,9 @@ |
||
12 | 12 | */ |
13 | 13 | class Person extends BaseThing implements PersonInterface |
14 | 14 | { |
15 | - /** |
|
16 | - * @inheritdoc |
|
17 | - */ |
|
15 | + /** |
|
16 | + * @inheritdoc |
|
17 | + */ |
|
18 | 18 | public function typeDefintion() |
19 | 19 | { |
20 | 20 | return 'Person'; |
@@ -14,11 +14,11 @@ |
||
14 | 14 | */ |
15 | 15 | class Thing extends BaseThing |
16 | 16 | { |
17 | - /** |
|
18 | - * @inheritdoc |
|
19 | - */ |
|
20 | - public function typeDefintion() |
|
21 | - { |
|
22 | - return 'Thing'; |
|
23 | - } |
|
17 | + /** |
|
18 | + * @inheritdoc |
|
19 | + */ |
|
20 | + public function typeDefintion() |
|
21 | + { |
|
22 | + return 'Thing'; |
|
23 | + } |
|
24 | 24 | } |
@@ -12,9 +12,9 @@ |
||
12 | 12 | */ |
13 | 13 | class Event extends BaseThing implements EventInterface |
14 | 14 | { |
15 | - /** |
|
16 | - * @inheritdoc |
|
17 | - */ |
|
15 | + /** |
|
16 | + * @inheritdoc |
|
17 | + */ |
|
18 | 18 | public function typeDefintion() |
19 | 19 | { |
20 | 20 | return 'Event'; |
@@ -15,9 +15,9 @@ discard block |
||
15 | 15 | */ |
16 | 16 | class BaseDevCommand extends Command |
17 | 17 | { |
18 | - /** |
|
19 | - * @var string The location of the devconfig json where data is stored. |
|
20 | - */ |
|
18 | + /** |
|
19 | + * @var string The location of the devconfig json where data is stored. |
|
20 | + */ |
|
21 | 21 | public $configFile = '@appFolder/devconfig.json'; |
22 | 22 | |
23 | 23 | /** |
@@ -27,17 +27,17 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public function actionConfigInfo() |
29 | 29 | { |
30 | - $this->outputInfo("dev config file: " . Yii::getAlias($this->configFile)); |
|
30 | + $this->outputInfo("dev config file: " . Yii::getAlias($this->configFile)); |
|
31 | 31 | |
32 | - $config = $this->readConfig(); |
|
32 | + $config = $this->readConfig(); |
|
33 | 33 | |
34 | - if (!$config) { |
|
35 | - return $this->outputError("Unable to open config file."); |
|
36 | - } |
|
34 | + if (!$config) { |
|
35 | + return $this->outputError("Unable to open config file."); |
|
36 | + } |
|
37 | 37 | |
38 | - foreach ($config as $key => $value) { |
|
39 | - $this->output("{$key} => {$value}"); |
|
40 | - } |
|
38 | + foreach ($config as $key => $value) { |
|
39 | + $this->output("{$key} => {$value}"); |
|
40 | + } |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | /** |