Add permission set lazy loading to Profile Field model

This commit is contained in:
Hypolite Petovan 2020-01-13 22:22:02 -05:00
parent d475cb5028
commit d11a0d3814
3 changed files with 59 additions and 4 deletions

View file

@ -6,5 +6,12 @@ use Friendica\BaseCollection;
class ProfileFields extends BaseCollection
{
/**
* @param callable $callback
* @return ProfileFields
*/
public function map(callable $callback)
{
return parent::map($callback);
}
}