From 3d1cd02f27518f1a04374c7c8320cd5d82ede6e9 Mon Sep 17 00:00:00 2001 From: Minteck Date: Thu, 23 Feb 2023 19:34:56 +0100 Subject: Updated 40 files, added 37 files, deleted 1103 files and renamed 3905 files (automated) --- includes/ical/src/EventsList.php | 54 ---------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 includes/ical/src/EventsList.php (limited to 'includes/ical/src/EventsList.php') diff --git a/includes/ical/src/EventsList.php b/includes/ical/src/EventsList.php deleted file mode 100644 index 3325368..0000000 --- a/includes/ical/src/EventsList.php +++ /dev/null @@ -1,54 +0,0 @@ - - */ -class EventsList extends \ArrayObject { - - /** - * Return array of Events - * - * @return array - */ - public function getArrayCopy(): array { - return array_values(parent::getArrayCopy()); - } - - /** - * Return sorted EventList (the newest dates are first) - * - * @return $this - */ - public function sorted(): EventsList { - $this->uasort(static function ($a, $b): int { - if ($a['DTSTART'] === $b['DTSTART']) { - return 0; - } - return ($a['DTSTART'] < $b['DTSTART']) ? -1 : 1; - }); - - return $this; - } - - /** - * Return reversed sorted EventList (the oldest dates are first) - * - * @return $this - */ - public function reversed(): EventsList { - $this->uasort(static function ($a, $b): int { - if ($a['DTSTART'] === $b['DTSTART']) { - return 0; - } - return ($a['DTSTART'] > $b['DTSTART']) ? -1 : 1; - }); - - return $this; - } - -} \ No newline at end of file -- cgit