Passed
Push — master ( 5a0e57...82c8a7 )
by Albert
01:35
created
src/Period/Day.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -31,6 +31,9 @@
 block discarded – undo
31 31
         '2016-05-16', // Segunda Pascua
32 32
     ];
33 33
 
34
+    /**
35
+     * @param string $date_string
36
+     */
34 37
     public function __construct(?string $date_string = null)
35 38
     {
36 39
         $date = new DateTimeImmutable($date_string);
Please login to merge, or discard this patch.
src/Period/Month.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -7,6 +7,9 @@
 block discarded – undo
7 7
 
8 8
 class Month extends DateRange
9 9
 {
10
+    /**
11
+     * @param string $date_string
12
+     */
10 13
     public function __construct(?string $date_string = null)
11 14
     {
12 15
         $date = new DateTimeImmutable($date_string);
Please login to merge, or discard this patch.
src/Period/Year.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -7,6 +7,9 @@
 block discarded – undo
7 7
 
8 8
 class Year extends DateRange
9 9
 {
10
+    /**
11
+     * @param string $date_string
12
+     */
10 13
     public function __construct(?string $date_string = null)
11 14
     {
12 15
         $date = new DateTimeImmutable($date_string);
Please login to merge, or discard this patch.