sehrgutesoftware/laravel5-api

View on GitHub
src/Laravel5_Api/Exceptions/Http/NotFound.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SehrGut\Laravel5_Api\Exceptions\Http;

class NotFound extends HttpException
{
    /**
     * {@inheritdoc}
     */
    protected $message = 'Not Found';

    /**
     * {@inheritdoc}
     */
    protected $status = 404;
}