Completed
Push — develop ( 76735f...243eed )
by Neomerx
07:12 queued 05:57
created
src/Rules/Converters/StringToDateTime.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
      * @param string $input
97 97
      * @param string $format
98 98
      *
99
-     * @return DateTimeInterface|null
99
+     * @return DateTimeImmutable|null
100 100
      *
101 101
      * @SuppressWarnings(PHPMD.StaticAccess)
102 102
      */
Please login to merge, or discard this patch.
src/Contracts/Execution/BlockStateInterface.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,15 +23,15 @@
 block discarded – undo
23 23
 {
24 24
     /**
25 25
      * @param int   $key
26
-     * @param mixed $default
26
+     * @param boolean $default
27 27
      *
28
-     * @return mixed
28
+     * @return ContextInterface
29 29
      */
30 30
     public function getState(int $key, $default = null);
31 31
 
32 32
     /**
33 33
      * @param int   $key
34
-     * @param mixed $value
34
+     * @param boolean $value
35 35
      *
36 36
      * @return self
37 37
      */
Please login to merge, or discard this patch.
sample/Application.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
     }
115 115
 
116 116
     /**
117
-     * @param iterable $errors
117
+     * @param ErrorInterface[] $errors
118 118
      *
119 119
      * @return void
120 120
      */
Please login to merge, or discard this patch.