friendica/src/Collection/ProfileFields.php

18 lines
264 B
PHP
Raw Normal View History

<?php
namespace Friendica\Collection;
use Friendica\BaseCollection;
class ProfileFields extends BaseCollection
{
/**
* @param callable $callback
* @return ProfileFields
*/
public function map(callable $callback)
{
return parent::map($callback);
}
}