Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

correct name spacing on return type #130

Merged
merged 1 commit into from
Feb 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/RRuleInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand All @@ -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);

Expand All @@ -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);

Expand All @@ -102,4 +102,4 @@ public function isFinite();
* @return bool
*/
public function isInfinite();
}
}