Completed
Push — master ( 0a059e...292010 )
by John
02:21
created
src/Server/Router/Endpoint/LoggingEndpoint.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
  * Class LoggingEndpoint
10 10
  * @package LunixREST\Server\Router\Endpoint
11 11
  */
12
-abstract class LoggingEndpoint implements Endpoint
13
-{
12
+abstract class LoggingEndpoint implements Endpoint {
14 13
     use LoggerAwareTrait;
15 14
 }
Please login to merge, or discard this patch.
src/Server/Router/Endpoint/Endpoint.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,8 +14,7 @@
 block discarded – undo
14 14
  * Interface Endpoint
15 15
  * @package LunixREST\Server\Router\Endpoint
16 16
  */
17
-interface Endpoint
18
-{
17
+interface Endpoint {
19 18
     /**
20 19
      * @param APIRequest $request
21 20
      * @return APIResponseData
Please login to merge, or discard this patch.
src/Server/Router/Endpoint/DefaultEndpoint.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,7 @@
 block discarded – undo
13 13
  * Class Endpoint
14 14
  * @package LunixREST\Server\Router\Endpoint
15 15
  */
16
-class DefaultEndpoint implements Endpoint
17
-{
16
+class DefaultEndpoint implements Endpoint {
18 17
     /**
19 18
      * @param APIRequest $request
20 19
      * @return APIResponseData
Please login to merge, or discard this patch.
src/Server/Router/Endpoint/Exceptions/InvalidRequestException.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 InvalidRequestException
7 7
  * @package LunixREST\Server\Router\Endpoint\Exceptions
8 8
  */
9
-class InvalidRequestException extends \Exception
10
-{
9
+class InvalidRequestException extends \Exception {
11 10
 
12 11
 }
Please login to merge, or discard this patch.
src/Server/Router/Endpoint/Exceptions/ElementConflictException.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 ElementConflictException
7 7
  * @package LunixREST\Server\Router\Endpoint\Exceptions
8 8
  */
9
-class ElementConflictException extends \Exception
10
-{
9
+class ElementConflictException extends \Exception {
11 10
 
12 11
 }
Please login to merge, or discard this patch.
src/Server/Router/Endpoint/Exceptions/ElementNotFoundException.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 ElementNotFoundException
7 7
  * @package LunixREST\Server\Router\Endpoint\Exceptions
8 8
  */
9
-class ElementNotFoundException extends \Exception
10
-{
9
+class ElementNotFoundException extends \Exception {
11 10
 
12 11
 }
Please login to merge, or discard this patch.
src/Server/Router/Endpoint/Exceptions/UnsupportedMethodException.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 UnsupportedMethodException
7 7
  * @package LunixREST\Server\Router\Endpoint\Exceptions
8 8
  */
9
-class UnsupportedMethodException extends \Exception
10
-{
9
+class UnsupportedMethodException extends \Exception {
11 10
 
12 11
 }
Please login to merge, or discard this patch.
src/Server/Router/EndpointFactory/RegisteredEndpointFactory.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,8 +10,7 @@  discard block
 block discarded – undo
10 10
  * Class RegisteredEndpointFactory
11 11
  * @package LunixREST\Server\Router\EndpointFactory
12 12
  */
13
-class RegisteredEndpointFactory implements EndpointFactory
14
-{
13
+class RegisteredEndpointFactory implements EndpointFactory {
15 14
     /**
16 15
      * @var Endpoint[][]
17 16
      */
@@ -22,8 +21,7 @@  discard block
 block discarded – undo
22 21
      * @param string $version
23 22
      * @param Endpoint $endpoint
24 23
      */
25
-    public function register(string $name, string $version, Endpoint $endpoint)
26
-    {
24
+    public function register(string $name, string $version, Endpoint $endpoint) {
27 25
         if(!isset($this->endpoints[$version])) {
28 26
             $this->endpoints[$version] = [];
29 27
         }
Please login to merge, or discard this patch.
src/Server/Router/EndpointFactory/EndpointFactory.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 EndpointFactory
10 10
  * @package LunixREST\Server\Router\Endpoint
11 11
  */
12
-interface EndpointFactory
13
-{
12
+interface EndpointFactory {
14 13
     /**
15 14
      * @param string $name
16 15
      * @param string $version
Please login to merge, or discard this patch.