2020-08-17 23:46:58 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
class ApiUnauthorizedResponse extends ApiResponse
|
|
|
|
{
|
2020-08-23 12:37:39 +02:00
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
$this->setStatus(self::STATUS_UNAUTHORIZED);
|
|
|
|
}
|
2020-08-17 23:46:58 +02:00
|
|
|
}
|