*/ protected $args; /** * @param array $args */ function __construct(array $args) { $this->pdo = Db::pdo(); $this->args = $args; } function csrf_ignore(string $method): bool { return false; } function before(string $method): bool { return true; } function after(): bool { return true; } }