*/
private $process;
+ /**
+ * Returns the arguments of the query
+ *
+ * @return Arguments
+ */
+ public function getArgs()
+ {
+ return $this->args;
+ }
+
/**
* Returns the current config cache of this node
*
$a = \get_app();
$x = explode('.', $hash);
- if (time() > (IntVal($x[0]) + $max_livetime)) {
+ if (time() > (intval($x[0]) + $max_livetime)) {
return false;
}
throw new \Friendica\Network\HTTPException\ForbiddenException();
}
}
+
+ /**
+ * @return App\Arguments
+ */
+ protected static function getArgs()
+ {
+ return self::getApp()->getArgs();
+ }
}