]> git.mxchange.org Git - friendica.git/blob - src/Collection/ProfileFields.php
Add permission set lazy loading to Profile Field model
[friendica.git] / src / Collection / ProfileFields.php
1 <?php
2
3 namespace Friendica\Collection;
4
5 use Friendica\BaseCollection;
6
7 class ProfileFields extends BaseCollection
8 {
9         /**
10          * @param callable $callback
11          * @return ProfileFields
12          */
13         public function map(callable $callback)
14         {
15                 return parent::map($callback);
16         }
17 }