Completed
Push — dependabot/composer/symfony/fi... ( 06ee24 )
by
unknown
09:26 queued 03:29
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/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/Collection/Page/Page.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
172 172
      *
173 173
      * @param string $string
174 174
      *
175
-     * @return string[]|false
175
+     * @return string|false
176 176
      */
177 177
     public static function getPrefix(string $string)
178 178
     {
Please login to merge, or discard this patch.