@@ -20,7 +20,7 @@ |
||
20 | 20 | class FilenameRecursiveTreeIterator extends RecursiveTreeIterator |
21 | 21 | { |
22 | 22 | /** |
23 | - * @return mixed |
|
23 | + * @return string |
|
24 | 24 | */ |
25 | 25 | public function current() |
26 | 26 | { |
@@ -30,7 +30,7 @@ |
||
30 | 30 | $this->wlAnnonce(sprintf('%s/', $this->contentDir)); |
31 | 31 | $pages = $this->getPagesTree(); |
32 | 32 | if ($this->getConsole()->isUtf8()) { |
33 | - $unicodeTreePrefix = function (RecursiveTreeIterator $tree) { |
|
33 | + $unicodeTreePrefix = function(RecursiveTreeIterator $tree) { |
|
34 | 34 | $prefixParts = [ |
35 | 35 | RecursiveTreeIterator::PREFIX_LEFT => ' ', |
36 | 36 | RecursiveTreeIterator::PREFIX_MID_HAS_NEXT => '│ ', |
@@ -209,7 +209,7 @@ |
||
209 | 209 | */ |
210 | 210 | public function messageCallback() |
211 | 211 | { |
212 | - return function ($code, $message = '', $itemsCount = 0, $itemsMax = 0) { |
|
212 | + return function($code, $message = '', $itemsCount = 0, $itemsMax = 0) { |
|
213 | 213 | if ($this->quiet) { |
214 | 214 | return; |
215 | 215 | } else { |
@@ -20,6 +20,7 @@ discard block |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * {@inheritdoc} |
23 | + * @param string $string |
|
23 | 24 | */ |
24 | 25 | public static function convertFrontmatter($string, $type = 'yaml') |
25 | 26 | { |
@@ -38,6 +39,7 @@ discard block |
||
38 | 39 | |
39 | 40 | /** |
40 | 41 | * {@inheritdoc} |
42 | + * @param string $string |
|
41 | 43 | */ |
42 | 44 | public static function convertBody($string) |
43 | 45 | { |
@@ -19,6 +19,9 @@ |
||
19 | 19 | { |
20 | 20 | abstract public function offsetExists($offset); |
21 | 21 | |
22 | + /** |
|
23 | + * @param string $offset |
|
24 | + */ |
|
22 | 25 | abstract public function offsetGet($offset); |
23 | 26 | |
24 | 27 | abstract public function offsetSet($offset, $value); |
@@ -20,6 +20,7 @@ |
||
20 | 20 | * |
21 | 21 | * @param string|array $templatesPath |
22 | 22 | * @param Config $config |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function __construct($templatesPath, $config); |
25 | 26 |
@@ -53,6 +53,7 @@ |
||
53 | 53 | |
54 | 54 | /** |
55 | 55 | * {@inheritdoc} |
56 | + * @param string $name |
|
56 | 57 | */ |
57 | 58 | public function addGlobal($name, $value) |
58 | 59 | { |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | public function setMessageCallback($messageCallback = null) |
230 | 230 | { |
231 | 231 | if ($messageCallback === null) { |
232 | - $messageCallback = function ($code, $message = '', $itemsCount = 0, $itemsMax = 0) { |
|
232 | + $messageCallback = function($code, $message = '', $itemsCount = 0, $itemsMax = 0) { |
|
233 | 233 | switch ($code) { |
234 | 234 | case 'CONFIG': |
235 | 235 | case 'LOCATE': |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | public function getLog($type = 0) |
327 | 327 | { |
328 | 328 | if (is_array($this->log)) { |
329 | - return array_filter($this->log, function ($key) use ($type) { |
|
329 | + return array_filter($this->log, function($key) use ($type) { |
|
330 | 330 | return $key['type'] <= $type; |
331 | 331 | }); |
332 | 332 | } |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | /** |
151 | 151 | * Config::setSourceDir alias. |
152 | 152 | * |
153 | - * @param $sourceDir |
|
153 | + * @param null|string $sourceDir |
|
154 | 154 | * |
155 | 155 | * @return $this |
156 | 156 | */ |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | /** |
165 | 165 | * Config::setDestinationDir alias. |
166 | 166 | * |
167 | - * @param $destinationDir |
|
167 | + * @param null|string $destinationDir |
|
168 | 168 | * |
169 | 169 | * @return $this |
170 | 170 | */ |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | } |
177 | 177 | |
178 | 178 | /** |
179 | - * @param $content |
|
179 | + * @param Finder $content |
|
180 | 180 | */ |
181 | 181 | public function setContent($content) |
182 | 182 | { |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | } |
193 | 193 | |
194 | 194 | /** |
195 | - * @param $pages |
|
195 | + * @param PageCollection $pages |
|
196 | 196 | */ |
197 | 197 | public function setPages($pages) |
198 | 198 | { |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | } |
209 | 209 | |
210 | 210 | /** |
211 | - * @param $menus |
|
211 | + * @param Collection\Menu\Collection $menus |
|
212 | 212 | */ |
213 | 213 | public function setMenus($menus) |
214 | 214 | { |
@@ -287,7 +287,7 @@ discard block |
||
287 | 287 | } |
288 | 288 | |
289 | 289 | /** |
290 | - * @param $renderer |
|
290 | + * @param Renderer\Twig $renderer |
|
291 | 291 | */ |
292 | 292 | public function setRenderer($renderer) |
293 | 293 | { |
@@ -24,7 +24,7 @@ |
||
24 | 24 | { |
25 | 25 | $generatedPages = new PageCollection(); |
26 | 26 | |
27 | - $filteredPages = $pageCollection->filter(function (Page $page) { |
|
27 | + $filteredPages = $pageCollection->filter(function(Page $page) { |
|
28 | 28 | return null !== $page->getVariable('external'); |
29 | 29 | }); |
30 | 30 |