return $this->argv;
}
+ /**
+ * @return string The used HTTP method
+ */
public function getMethod()
{
return $this->method;
$this->profiler->set(microtime(true) - $timestamp, 'init');
- switch ($this->args->getMethod() ?? Router::GET) {
+ switch ($this->args->getMethod()) {
case Router::DELETE:
$this->delete($request);
break;
$params['order'] = ['cid'];
}
+ $accounts = [];
+
$followers = DBA::select('contact-relation', ['relation-cid'], $condition, $params);
while ($follower = DBA::fetch($followers)) {
self::setBoundaries($follower['relation-cid']);