]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Event.php
Editing of media descriptions is now possible as well
[friendica.git] / src / Model / Event.php
index 4e7a6a86105771c750a52c23ada775b8bda9eb2a..e39ee5fd56b43b78fc64561a7cf55320b8638372 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2022, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -198,7 +198,7 @@ class Event
 
        public static function sortByDate(array $event_list): array
        {
-               usort($event_list, ['self', 'compareDatesCallback']);
+               usort($event_list, [self::class, 'compareDatesCallback']);
                return $event_list;
        }