Completed
Push — 4.1.0 ( 1d24e8...cd49c6 )
by Arnaud
02:09
created
src/Command/ListContent/FilenameRecursiveTreeIterator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Converter/Converter.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
38 39
 
39 40
     /**
40 41
      * {@inheritdoc}
42
+     * @param string $string
41 43
      */
42 44
     public static function convertBody($string)
43 45
     {
Please login to merge, or discard this patch.
src/Page/VariableTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -19,6 +19,9 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Renderer/RendererInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Renderer/Twig.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -53,6 +53,7 @@
 block discarded – undo
53 53
 
54 54
     /**
55 55
      * {@inheritdoc}
56
+     * @param string $name
56 57
      */
57 58
     public function addGlobal($name, $value)
58 59
     {
Please login to merge, or discard this patch.
src/Collection/Page/Page.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -173,9 +173,9 @@  discard block
 block discarded – undo
173 173
     /**
174 174
      * Return prefix if prefix or false.
175 175
      *
176
-     * @param $string
176
+     * @param string $string
177 177
      *
178
-     * @return string[]|false
178
+     * @return string|false
179 179
      */
180 180
     public static function getPrefix($string)
181 181
     {
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
     /**
190 190
      * Return string without prefix (if exist).
191 191
      *
192
-     * @param $string
192
+     * @param string $string
193 193
      *
194 194
      * @return string
195 195
      */
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
     /**
369 369
      * Set title.
370 370
      *
371
-     * @param $title
371
+     * @param string $title
372 372
      *
373 373
      * @return $this
374 374
      */
@@ -416,7 +416,7 @@  discard block
 block discarded – undo
416 416
     /**
417 417
      * Set weight.
418 418
      *
419
-     * @param $int
419
+     * @param string|false $int
420 420
      *
421 421
      * @return $this
422 422
      */
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
     /**
441 441
      * Set permalink.
442 442
      *
443
-     * @param $permalink
443
+     * @param string $permalink
444 444
      *
445 445
      * @return $this
446 446
      */
Please login to merge, or discard this patch.
src/Generator/GeneratorInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@
 block discarded – undo
17 17
      * Give config to object.
18 18
      *
19 19
      * @param \Cecil\Config $config
20
+     * @return void
20 21
      */
21 22
     public function __construct(\Cecil\Config $config);
22 23
 
Please login to merge, or discard this patch.
src/Step/StepInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -16,6 +16,7 @@
 block discarded – undo
16 16
      * StepInterface constructor.
17 17
      *
18 18
      * @param Builder $builder
19
+     * @return void
19 20
      */
20 21
     public function __construct(Builder $builder);
21 22
 
Please login to merge, or discard this patch.
src/Builder.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
287 287
     }
288 288
 
289 289
     /**
290
-     * @param $renderer
290
+     * @param Renderer\Twig $renderer
291 291
      */
292 292
     public function setRenderer($renderer)
293 293
     {
Please login to merge, or discard this patch.