Completed
Pull Request — master (#38)
by John
02:23
created
src/Server/Router/EndpointFactory/Exceptions/UnknownEndpointException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
  * Class UnknownEndpointException
7 7
  * @package LunixREST\Server\Router\EndpointFactory\Exceptions
8 8
  */
9
-class UnknownEndpointException extends UnableToCreateEndpointException
10
-{
9
+class UnknownEndpointException extends UnableToCreateEndpointException {
11 10
 
12 11
 }
Please login to merge, or discard this patch.
src/Server/Exceptions/AccessDeniedException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
  * Class AccessDeniedException
7 7
  * @package LunixREST\Server\Exceptions
8 8
  */
9
-class AccessDeniedException extends UnableToHandleRequestException
10
-{
9
+class AccessDeniedException extends UnableToHandleRequestException {
11 10
 
12 11
 }
Please login to merge, or discard this patch.
src/Server/Exceptions/InvalidAPIKeyException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
  * Class InvalidAPIKeyException
7 7
  * @package LunixREST\Server\Exceptions
8 8
  */
9
-class InvalidAPIKeyException extends UnableToHandleRequestException
10
-{
9
+class InvalidAPIKeyException extends UnableToHandleRequestException {
11 10
 
12 11
 }
Please login to merge, or discard this patch.
src/Server/Exceptions/UnableToHandleRequestException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
  * Class ThrottleLimitExceededException
7 7
  * @package LunixREST\Server\Exceptions
8 8
  */
9
-class UnableToHandleRequestException extends \Exception
10
-{
9
+class UnableToHandleRequestException extends \Exception {
11 10
 
12 11
 }
Please login to merge, or discard this patch.
src/Server/Exceptions/ThrottleLimitExceededException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
  * Class ThrottleLimitExceededException
7 7
  * @package LunixREST\Server\Exceptions
8 8
  */
9
-class ThrottleLimitExceededException extends UnableToHandleRequestException
10
-{
9
+class ThrottleLimitExceededException extends UnableToHandleRequestException {
11 10
 
12 11
 }
Please login to merge, or discard this patch.
RequestFactory/HeaderParser/Exceptions/UnableToParseHeadersException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 
4 4
 use LunixREST\RequestFactory\Exceptions\UnableToCreateRequestException;
5 5
 
6
-class UnableToParseHeadersException extends UnableToCreateRequestException
7
-{
6
+class UnableToParseHeadersException extends UnableToCreateRequestException {
8 7
 
9 8
 }
Please login to merge, or discard this patch.
src/RequestFactory/URLParser/Exceptions/UnableToParseURLException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
  * Class UnableToParseURLException
9 9
  * @package LunixREST\RequestFactory\URLParser\Exceptions
10 10
  */
11
-class UnableToParseURLException extends UnableToCreateRequestException
12
-{
11
+class UnableToParseURLException extends UnableToCreateRequestException {
13 12
 
14 13
 }
Please login to merge, or discard this patch.
src/RequestFactory/URLParser/Exceptions/InvalidRequestURLException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
  * Class InvalidRequestURLException
7 7
  * @package LunixREST\RequestFactory\URLParser\Exceptions
8 8
  */
9
-class InvalidRequestURLException extends UnableToParseURLException
10
-{
9
+class InvalidRequestURLException extends UnableToParseURLException {
11 10
 
12 11
 }
Please login to merge, or discard this patch.
src/RequestFactory/Exceptions/UnableToCreateRequestException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
  * Class UnableToCreateRequestException
7 7
  * @package LunixREST\RequestFactory\Exceptions
8 8
  */
9
-class UnableToCreateRequestException extends \Exception
10
-{
9
+class UnableToCreateRequestException extends \Exception {
11 10
 
12 11
 }
Please login to merge, or discard this patch.