From 410474647fdd6685130d0737278e5ec9a120f821 Mon Sep 17 00:00:00 2001 From: Craig Heydenburg Date: Tue, 21 Feb 2023 16:26:45 -0500 Subject: [PATCH] Update RRuleInterface.php correct name spacing on return type --- src/RRuleInterface.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/RRuleInterface.php b/src/RRuleInterface.php index 1cd0a8f..b0a5a53 100755 --- a/src/RRuleInterface.php +++ b/src/RRuleInterface.php @@ -49,7 +49,7 @@ public function getOccurrencesAfter($date, $inclusive = false, $limit = null); * * @param mixed $date * @param int $index The index (starts at 1) - * @return DateTimeInterface|null + * @return \DateTimeInterface|null */ public function getNthOccurrenceAfter($date, $index); @@ -68,7 +68,7 @@ public function getOccurrencesBefore($date, $inclusive = false, $limit = null); * * @param mixed $date * @param int $index The index (starts at 1) - * @return DateTimeInterface|null + * @return \DateTimeInterface|null */ public function getNthOccurrenceBefore($date, $index); @@ -77,7 +77,7 @@ public function getNthOccurrenceBefore($date, $index); * * @param mixed $date * @param int $index 0 returns the date, positive integer returns index in the future, negative in the past - * @return DateTimeInterface|null + * @return \DateTimeInterface|null */ public function getNthOccurrenceFrom($date, $index); @@ -102,4 +102,4 @@ public function isFinite(); * @return bool */ public function isInfinite(); -} \ No newline at end of file +}