Completed
Push — 1.x ( 8c7a9a...c7de71 )
by Markus
04:41 queued 02:47
created
src/Eluceo/iCal/Component/TimezoneRule.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -202,7 +202,7 @@
 block discarded – undo
202 202
     }
203 203
 
204 204
     /**
205
-     * @return mixed return string representation of start date or NULL if no date was given
205
+     * @return string|null return string representation of start date or NULL if no date was given
206 206
      */
207 207
     public function getDtStart()
208 208
     {
Please login to merge, or discard this patch.
src/Eluceo/iCal/Property/Event/Attendees.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     }
18 18
 
19 19
     /**
20
-     * @param       $value
20
+     * @param       string $value
21 21
      * @param array $params
22 22
      *
23 23
      * @return $this
Please login to merge, or discard this patch.
src/Eluceo/iCal/Property/Event/RecurrenceId.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     }
61 61
 
62 62
     /**
63
-     * @return DateTime
63
+     * @return \DateTime
64 64
      */
65 65
     public function getDatetime()
66 66
     {
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
     /**
101 101
      * Get all unfolded lines.
102 102
      *
103
-     * @return array
103
+     * @return string[]
104 104
      */
105 105
     public function toLines()
106 106
     {
Please login to merge, or discard this patch.
src/Eluceo/iCal/Util/DateUtil.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * @param bool           $useTimezone
29 29
      * @param bool           $useUtc
30 30
      *
31
-     * @return mixed
31
+     * @return string
32 32
      */
33 33
     public static function getDateString(\DateTime $dateTime = null, $noTime = false, $useTimezone = false, $useUtc = false)
34 34
     {
Please login to merge, or discard this patch.
src/Eluceo/iCal/Component/Alarm.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 
14 14
 use Eluceo\iCal\Component;
15 15
 use Eluceo\iCal\PropertyBag;
16
-use Eluceo\iCal\Property;
17 16
 
18 17
 /**
19 18
  * Implementation of the VALARM component.
Please login to merge, or discard this patch.
src/Eluceo/iCal/Component/Calendar.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -294,7 +294,7 @@
 block discarded – undo
294 294
     }
295 295
 
296 296
     /**
297
-     * @return null|string
297
+     * @return string
298 298
      */
299 299
     public function getProdId()
300 300
     {
Please login to merge, or discard this patch.