@@ -49,7 +49,7 @@ |
||
49 | 49 | */ |
50 | 50 | public function getHref() |
51 | 51 | { |
52 | - return empty($this->getEmail()) ?: 'mailto:' . $this->getEmail(); |
|
52 | + return empty($this->getEmail()) ?: 'mailto:'.$this->getEmail(); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | /** |
@@ -138,8 +138,8 @@ |
||
138 | 138 | protected static function registerView() |
139 | 139 | { |
140 | 140 | if (self::$_view === null) { |
141 | - Yii::$app->view->on(View::EVENT_BEGIN_BODY, function ($event) { |
|
142 | - echo '<script type="application/ld+json">' . Json::encode($event->sender->params) . '</script>'; |
|
141 | + Yii::$app->view->on(View::EVENT_BEGIN_BODY, function($event) { |
|
142 | + echo '<script type="application/ld+json">'.Json::encode($event->sender->params).'</script>'; |
|
143 | 143 | }); |
144 | 144 | |
145 | 145 | self::$_view = true; |
@@ -193,6 +193,7 @@ discard block |
||
193 | 193 | |
194 | 194 | /** |
195 | 195 | * @param int $maximumAttendeeCapacity |
196 | + * @return void |
|
196 | 197 | */ |
197 | 198 | public function setMaximumAttendeeCapacity($maximumAttendeeCapacity); |
198 | 199 | |
@@ -302,6 +303,7 @@ discard block |
||
302 | 303 | |
303 | 304 | /** |
304 | 305 | * @param Event $subEvent |
306 | + * @return void |
|
305 | 307 | */ |
306 | 308 | public function setSubEvent($subEvent); |
307 | 309 |
@@ -73,27 +73,27 @@ |
||
73 | 73 | public function run() |
74 | 74 | { |
75 | 75 | // Cache generated code |
76 | - return $this->getOrSetHasCache(['svg', $this->folder, $this->file, $this->cssClass], function () { |
|
76 | + return $this->getOrSetHasCache(['svg', $this->folder, $this->file, $this->cssClass], function() { |
|
77 | 77 | |
78 | 78 | // Check if file ends with .svg, if not add the extension |
79 | - $svgFile = StringHelper::endsWith($this->file, '.svg') ? $this->file : $this->file . '.svg'; |
|
79 | + $svgFile = StringHelper::endsWith($this->file, '.svg') ? $this->file : $this->file.'.svg'; |
|
80 | 80 | |
81 | 81 | // Build the full svg file path |
82 | - $svgPath = $this->folder . DIRECTORY_SEPARATOR . $svgFile; |
|
82 | + $svgPath = $this->folder.DIRECTORY_SEPARATOR.$svgFile; |
|
83 | 83 | |
84 | 84 | // Get the svg contents |
85 | 85 | $content = FileHelper::getFileContent($svgPath); |
86 | 86 | |
87 | 87 | // If a cssClass string is given, add it to the <svg> tag |
88 | 88 | if ($this->cssClass && is_string($this->cssClass)) { |
89 | - $content = preg_replace('/<svg/', '<svg class="' . $this->cssClass . '"', $content); |
|
89 | + $content = preg_replace('/<svg/', '<svg class="'.$this->cssClass.'"', $content); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | if ($content) { |
93 | 93 | return $content; |
94 | 94 | } |
95 | 95 | |
96 | - throw new Exception('Unable to access SVG File: ' . $svgPath); |
|
96 | + throw new Exception('Unable to access SVG File: '.$svgPath); |
|
97 | 97 | }); |
98 | 98 | } |
99 | 99 | } |
@@ -85,10 +85,10 @@ discard block |
||
85 | 85 | |
86 | 86 | $output = null; |
87 | 87 | if ($generateHeader) { |
88 | - $output.= self::generateRow($header, $delimiter, '"'); |
|
88 | + $output .= self::generateRow($header, $delimiter, '"'); |
|
89 | 89 | } |
90 | 90 | foreach ($rows as $row) { |
91 | - $output.= self::generateRow($row, $delimiter, '"'); |
|
91 | + $output .= self::generateRow($row, $delimiter, '"'); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | return $output; |
@@ -104,13 +104,13 @@ discard block |
||
104 | 104 | */ |
105 | 105 | protected static function generateRow(array $row, $delimiter, $enclose) |
106 | 106 | { |
107 | - array_walk($row, function (&$item) use ($enclose) { |
|
107 | + array_walk($row, function(&$item) use ($enclose) { |
|
108 | 108 | if (!is_scalar($item)) { |
109 | 109 | $item = "array"; |
110 | 110 | } |
111 | 111 | $item = $enclose.Html::encode($item).$enclose; |
112 | 112 | }); |
113 | 113 | |
114 | - return implode($delimiter, $row) . PHP_EOL; |
|
114 | + return implode($delimiter, $row).PHP_EOL; |
|
115 | 115 | } |
116 | 116 | } |
@@ -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) { |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | /** |
26 | 26 | * Display config data and location. |
27 | 27 | * |
28 | - * @return boolean|void |
|
28 | + * @return integer|null |
|
29 | 29 | */ |
30 | 30 | public function actionConfigInfo() |
31 | 31 | { |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | * Save a value in the config for a given key. |
76 | 76 | * |
77 | 77 | * @param string $key |
78 | - * @param mixed $value |
|
78 | + * @param string $value |
|
79 | 79 | * @return mixed |
80 | 80 | */ |
81 | 81 | protected function saveConfig($key, $value) |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public function actionConfigInfo() |
31 | 31 | { |
32 | - $this->outputInfo("dev config file: " . Yii::getAlias($this->configFile)); |
|
32 | + $this->outputInfo("dev config file: ".Yii::getAlias($this->configFile)); |
|
33 | 33 | |
34 | 34 | $config = $this->readConfig(); |
35 | 35 | |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | $save = FileHelper::writeFile($this->configFile, Json::encode($content)); |
92 | 92 | |
93 | 93 | if (!$save) { |
94 | - return $this->outputError("Unable to find config file " . $this->configFile. ". Please create and provide Permissions."); |
|
94 | + return $this->outputError("Unable to find config file ".$this->configFile.". Please create and provide Permissions."); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | return $value; |
@@ -166,17 +166,17 @@ |
||
166 | 166 | */ |
167 | 167 | public function actionClone($vendor = null, $repo = null) |
168 | 168 | { |
169 | - // if `vendor/repo` notation is provided |
|
170 | - if ($vendor !== null && strpos($vendor, '/')) { |
|
171 | - list($vendor, $repo) = explode("/", $vendor); |
|
172 | - } |
|
169 | + // if `vendor/repo` notation is provided |
|
170 | + if ($vendor !== null && strpos($vendor, '/')) { |
|
171 | + list($vendor, $repo) = explode("/", $vendor); |
|
172 | + } |
|
173 | 173 | |
174 | 174 | if (empty($vendor)) { |
175 | 175 | $vendor = $this->prompt("Enter the username/vendor for this repo (e.g. luyadev)"); |
176 | 176 | } |
177 | 177 | |
178 | 178 | if (empty($repo)) { |
179 | - $repo = $this->prompt("Enter the name of the repo you like to clone (e.g. luya-module-news)"); |
|
179 | + $repo = $this->prompt("Enter the name of the repo you like to clone (e.g. luya-module-news)"); |
|
180 | 180 | } |
181 | 181 | |
182 | 182 | return $this->cloneRepo($repo, $this->getCloneUrlBasedOnType($repo, $vendor), $this->getFilesystemRepoPath($repo), $vendor); |
@@ -203,7 +203,7 @@ |
||
203 | 203 | * @param string $repo |
204 | 204 | * @param string $isFork |
205 | 205 | * @param string $exists |
206 | - * @return array |
|
206 | + * @return string[] |
|
207 | 207 | */ |
208 | 208 | private function summaryItem($repo, $isFork, $exists) |
209 | 209 | { |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | // generate summary overview |
89 | 89 | foreach ($this->repos as $repo) { |
90 | 90 | $newRepoHome = $this->getFilesystemRepoPath($repo); |
91 | - if (file_exists($newRepoHome . DIRECTORY_SEPARATOR . '.git')) { |
|
91 | + if (file_exists($newRepoHome.DIRECTORY_SEPARATOR.'.git')) { |
|
92 | 92 | $summary[] = $this->summaryItem($repo, false, true); |
93 | 93 | } elseif ($this->forkExists($username, $repo)) { |
94 | 94 | $summary[] = $this->summaryItem($repo, true, false); |
@@ -147,13 +147,13 @@ discard block |
||
147 | 147 | $wrapper = new GitWrapper(); |
148 | 148 | |
149 | 149 | foreach ($this->repos as $repo) { |
150 | - $wrapper->git('checkout master', 'repos' . DIRECTORY_SEPARATOR . $repo); |
|
150 | + $wrapper->git('checkout master', 'repos'.DIRECTORY_SEPARATOR.$repo); |
|
151 | 151 | $this->outputInfo("{$repo}: checkout master ✔"); |
152 | 152 | |
153 | - $wrapper->git('fetch upstream', 'repos' . DIRECTORY_SEPARATOR . $repo); |
|
153 | + $wrapper->git('fetch upstream', 'repos'.DIRECTORY_SEPARATOR.$repo); |
|
154 | 154 | $this->outputInfo("{$repo}: fetch upstream ✔"); |
155 | 155 | |
156 | - $wrapper->git('rebase upstream/master master', 'repos' . DIRECTORY_SEPARATOR . $repo); |
|
156 | + $wrapper->git('rebase upstream/master master', 'repos'.DIRECTORY_SEPARATOR.$repo); |
|
157 | 157 | $this->outputInfo("{$repo}: rebase master ✔"); |
158 | 158 | } |
159 | 159 | } |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | */ |
218 | 218 | private function getFilesystemRepoPath($repo) |
219 | 219 | { |
220 | - return 'repos' . DIRECTORY_SEPARATOR . $repo; |
|
220 | + return 'repos'.DIRECTORY_SEPARATOR.$repo; |
|
221 | 221 | } |
222 | 222 | |
223 | 223 | /** |