mirror of
https://github.com/friendica/friendica-directory
synced 2024-11-16 00:29:24 +01:00
18 lines
346 B
PHP
18 lines
346 B
PHP
<?php
|
|
|
|
namespace Friendica\Directory\Routes\Console;
|
|
|
|
/**
|
|
* @author Hypolite Petovan <mrpetovan@gmail.com>
|
|
*/
|
|
class ProfilePoll extends BaseRoute
|
|
{
|
|
public function __invoke(array $args)
|
|
{
|
|
return (new \Friendica\Directory\Controllers\Console\ProfilePoll(
|
|
$this->container->get('\Friendica\Directory\Pollers\Profile'),
|
|
$args
|
|
));
|
|
}
|
|
}
|