]> git.mxchange.org Git - friendica.git/blobdiff - src/Collection/ProfileFields.php
Notifications cleared for a whole thread in case of one mark seen
[friendica.git] / src / Collection / ProfileFields.php
index e171b839b2cc7664c44fd05d50fdde58228918cf..16c267621b980c5cc8abc33372d0e9b856682ef9 100644 (file)
@@ -6,5 +6,22 @@ use Friendica\BaseCollection;
 
 class ProfileFields extends BaseCollection
 {
+       /**
+        * @param callable $callback
+        * @return ProfileFields
+        */
+       public function map(callable $callback)
+       {
+               return parent::map($callback);
+       }
 
+       /**
+        * @param callable|null $callback
+        * @param int           $flag
+        * @return ProfileFields
+        */
+       public function filter(callable $callback = null, int $flag = 0)
+       {
+               return parent::filter($callback, $flag);
+       }
 }