Completed
Push — fix-router ( 46b8ff )
by Arnaud
01:49
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/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/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/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 Builder      $buider
23
+     * @return void
23 24
      */
24 25
     public function __construct($templatesPath, Builder $buider);
25 26
 
Please login to merge, or discard this patch.
src/Util.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
     /**
128 128
      * Format class name.
129 129
      *
130
-     * @param \object $class
130
+     * @param Generator\GeneratorInterface $class
131 131
      * @param array   $options
132 132
      *
133 133
      * @return string
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 Builder to object.
18 18
      *
19 19
      * @param \Cecil\Builder $builder
20
+     * @return void
20 21
      */
21 22
     public function __construct(\Cecil\Builder $builder);
22 23
 
Please login to merge, or discard this patch.
src/Collection/Page/PrefixSuffix.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      * @param string $string
70 70
      * @param string $type
71 71
      *
72
-     * @return string[]|null
72
+     * @return string|null
73 73
      */
74 74
     protected static function get(string $string, string $type): ?string
75 75
     {
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
      *
93 93
      * @param string $string
94 94
      *
95
-     * @return string[]|null
95
+     * @return string|null
96 96
      */
97 97
     public static function getPrefix(string $string): ?string
98 98
     {
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
      *
105 105
      * @param string $string
106 106
      *
107
-     * @return string[]|null
107
+     * @return string|null
108 108
      */
109 109
     public static function getSuffix(string $string): ?string
110 110
     {
Please login to merge, or discard this patch.