[Pkg-owncloud-commits] [php-sabre-vobject] 13/128: Fix phpdoc for DateTime variables and arguments
David Prévot
taffit at moszumanska.debian.org
Tue May 20 23:10:58 UTC 2014
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository php-sabre-vobject.
commit 1e67d56afabf8dfca7995d83029a217b05439382
Author: Robin Appelman <icewind at owncloud.com>
Date: Tue Dec 31 14:52:51 2013 +0100
Fix phpdoc for DateTime variables and arguments
---
lib/Sabre/VObject/RecurrenceIterator.php | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/lib/Sabre/VObject/RecurrenceIterator.php b/lib/Sabre/VObject/RecurrenceIterator.php
index 9efbc1d..011cca7 100644
--- a/lib/Sabre/VObject/RecurrenceIterator.php
+++ b/lib/Sabre/VObject/RecurrenceIterator.php
@@ -52,14 +52,14 @@ class RecurrenceIterator implements \Iterator {
/**
* The initial event date
*
- * @var DateTime
+ * @var \DateTime
*/
public $startDate;
/**
* The end-date of the initial event
*
- * @var DateTime
+ * @var \DateTime
*/
public $endDate;
@@ -68,7 +68,7 @@ class RecurrenceIterator implements \Iterator {
*
* This will be increased for every iteration.
*
- * @var DateTime
+ * @var \DateTime
*/
public $currentDate;
@@ -117,7 +117,7 @@ class RecurrenceIterator implements \Iterator {
/**
* The last instance of this recurrence, inclusively
*
- * @var DateTime|null
+ * @var \DateTime|null
*/
public $until;
@@ -292,7 +292,7 @@ class RecurrenceIterator implements \Iterator {
* This date is calculated sometimes a bit early, before overridden events
* are evaluated.
*
- * @var DateTime
+ * @var \DateTime
*/
private $nextDate;
@@ -477,7 +477,7 @@ class RecurrenceIterator implements \Iterator {
/**
* Returns the current item in the list
*
- * @return DateTime
+ * @return \DateTime
*/
public function current() {
@@ -490,7 +490,7 @@ class RecurrenceIterator implements \Iterator {
* This method returns the startdate for the current iteration of the
* event.
*
- * @return DateTime
+ * @return \DateTime
*/
public function getDtStart() {
@@ -503,7 +503,7 @@ class RecurrenceIterator implements \Iterator {
* This method returns the enddate for the current iteration of the
* event.
*
- * @return DateTime
+ * @return \DateTime
*/
public function getDtEnd() {
@@ -605,7 +605,7 @@ class RecurrenceIterator implements \Iterator {
* means that if you forward to January 1st, the iterator will stop at the
* first event that ends *after* January 1st.
*
- * @param DateTime $dt
+ * @param \DateTime $dt
* @return void
*/
public function fastForward(\DateTime $dt) {
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/php-sabre-vobject.git
More information about the Pkg-owncloud-commits
mailing list