From ce84624d648cb36a37a5d8b59233394d4fa2d28e Mon Sep 17 00:00:00 2001 From: Ronni Egeriis Persson Date: Wed, 7 Oct 2015 14:46:55 +0200 Subject: [PATCH] Add missing error constant --- src/EchoIt/JsonApi/Handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EchoIt/JsonApi/Handler.php b/src/EchoIt/JsonApi/Handler.php index 750b7c2..ca3f002 100644 --- a/src/EchoIt/JsonApi/Handler.php +++ b/src/EchoIt/JsonApi/Handler.php @@ -29,7 +29,7 @@ abstract class Handler const ERROR_HTTP_METHOD_NOT_ALLOWED = 16; const ERROR_ID_PROVIDED_NOT_ALLOWED = 32; const ERROR_MISSING_DATA = 64; - const ERROR_RESERVED_7 = 128; + const ERROR_UNKNOWN = 128; const ERROR_RESERVED_8 = 256; const ERROR_RESERVED_9 = 512;