Completed
Push — master ( 068584...6f6103 )
by John
04:49
created
src/Endpoint/EndpointFactory.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,7 @@
 block discarded – undo
3 3
 
4 4
 use LunixREST\Endpoint\Exceptions\UnknownEndpointException;
5 5
 
6
-interface EndpointFactory
7
-{
6
+interface EndpointFactory {
8 7
     /**
9 8
      * @param string $name
10 9
      * @param string $version
Please login to merge, or discard this patch.
src/Endpoint/Exceptions/UnknownEndpointException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace LunixREST\Endpoint\Exceptions;
3 3
 
4
-class UnknownEndpointException extends \Exception
5
-{
4
+class UnknownEndpointException extends \Exception {
6 5
 
7 6
 }
Please login to merge, or discard this patch.
src/Endpoint/Exceptions/UnsupportedMethodException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace LunixREST\Endpoint\Exceptions;
3 3
 
4
-class UnsupportedMethodException extends \Exception
5
-{
4
+class UnsupportedMethodException extends \Exception {
6 5
 
7 6
 }
Please login to merge, or discard this patch.
src/Endpoint/Endpoint.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,7 @@
 block discarded – undo
9 9
  * Interface Endpoint
10 10
  * @package LunixREST\Endpoints
11 11
  */
12
-interface Endpoint
13
-{
12
+interface Endpoint {
14 13
     /**
15 14
      * @param Request $request
16 15
      * @return ResponseData
Please login to merge, or discard this patch.
src/Exceptions/InstanceNotFoundException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace LunixREST\Exceptions;
3 3
 
4
-class InstanceNotFoundException extends \Exception
5
-{
4
+class InstanceNotFoundException extends \Exception {
6 5
 
7 6
 }
Please login to merge, or discard this patch.
src/Exceptions/InvalidAPIKeyException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace LunixREST\Exceptions;
3 3
 
4
-class InvalidAPIKeyException extends \Exception
5
-{
4
+class InvalidAPIKeyException extends \Exception {
6 5
 
7 6
 }
Please login to merge, or discard this patch.
src/Exceptions/AccessDeniedException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace LunixREST\Exceptions;
3 3
 
4
-class AccessDeniedException extends \Exception
5
-{
4
+class AccessDeniedException extends \Exception {
6 5
 
7 6
 }
Please login to merge, or discard this patch.
src/Exceptions/ThrottleLimitExceededException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace LunixREST\Exceptions;
3 3
 
4
-class ThrottleLimitExceededException extends \Exception
5
-{
4
+class ThrottleLimitExceededException extends \Exception {
6 5
 
7 6
 }
Please login to merge, or discard this patch.
src/Configuration/Configuration.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace LunixREST\Configuration;
3 3
 
4
-interface Configuration
5
-{
4
+interface Configuration {
6 5
     public function get($key);
7 6
 
8 7
     public function set($key);
Please login to merge, or discard this patch.