-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Jiannei/laravel-response. | ||
* | ||
* (c) Jiannei <[email protected]> | ||
* | ||
* This source file is subject to the MIT license that is bundled | ||
* with this source code in the file LICENSE. | ||
*/ | ||
|
||
namespace Jiannei\Response\Laravel\Repositories\Enums; | ||
|
||
|
||
use Jiannei\Enum\Laravel\Contracts\LocalizedEnumContract; | ||
use Jiannei\Enum\Laravel\Enum; | ||
|
||
|
@@ -72,4 +79,4 @@ class HttpStatusCodeEnum extends Enum implements LocalizedEnumContract | |
const HTTP_LOOP_DETECTED = 508; // RFC5842 | ||
const HTTP_NOT_EXTENDED = 510; // RFC2774 | ||
const HTTP_NETWORK_AUTHENTICATION_REQUIRED = 511; // RFC6585 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,5 +13,4 @@ | |
|
||
abstract class ResponseCodeEnum extends HttpStatusCodeEnum | ||
{ | ||
|
||
} |