fix: no permission status code

pull/75/head
sualko 2020-08-31 16:25:58 +02:00
parent 6b199fa6e1
commit e3c7eb2bbb
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ class NoPermissionResponse extends Response {
parent::__construct(); parent::__construct();
$this->setContentSecurityPolicy(new ContentSecurityPolicy()); $this->setContentSecurityPolicy(new ContentSecurityPolicy());
$this->setStatus(404); $this->setStatus(403);
} }
public function render() { public function render() {