src/Http/Error/Unauthorized.php

Summary

Maintainability
A
40 mins
Test Coverage
<?php
/**
 *
 */

namespace Mvc5\Http\Error;

use Mvc5\Http\HttpError;

use const Mvc5\{ DESCRIPTION, ERRORS, MESSAGE, STATUS };

final class Unauthorized
    extends HttpError
{
    /**
     * @param array $config
     */
    function __construct(array $config = [])
    {
        parent::__construct($config + [
                DESCRIPTION => '',
                ERRORS => [],
                MESSAGE => 'Unauthorized',
                STATUS => 401
            ]);
    }
}