@@ -8,8 +8,7 @@ discard block |
||
8 | 8 | * Class APIKeyCachePoolThrottle |
9 | 9 | * @package LunixREST\Server\Throttle |
10 | 10 | */ |
11 | -class APIKeyCachePoolThrottle extends CachePoolThrottle |
|
12 | -{ |
|
11 | +class APIKeyCachePoolThrottle extends CachePoolThrottle { |
|
13 | 12 | /** |
14 | 13 | * @var string |
15 | 14 | */ |
@@ -22,8 +21,7 @@ discard block |
||
22 | 21 | * @param int $perXSeconds |
23 | 22 | * @param string $keyPrefix |
24 | 23 | */ |
25 | - public function __construct(CacheItemPoolInterface $cacheItemPool, $limit = 60, $perXSeconds = 60, $keyPrefix = '') |
|
26 | - { |
|
24 | + public function __construct(CacheItemPoolInterface $cacheItemPool, $limit = 60, $perXSeconds = 60, $keyPrefix = '') { |
|
27 | 25 | parent::__construct($cacheItemPool, $limit, $perXSeconds); |
28 | 26 | $this->keyPrefix = $keyPrefix; |
29 | 27 | } |
@@ -8,8 +8,7 @@ |
||
8 | 8 | * Class PublicAccessControl |
9 | 9 | * @package LunixREST\Server\AccessControl |
10 | 10 | */ |
11 | -class PublicAccessControl implements AccessControl |
|
12 | -{ |
|
11 | +class PublicAccessControl implements AccessControl { |
|
13 | 12 | /** |
14 | 13 | * @param \LunixREST\Server\APIRequest\APIRequest $request |
15 | 14 | * @return bool |
@@ -8,8 +8,7 @@ |
||
8 | 8 | * Interface AccessControl |
9 | 9 | * @package LunixREST\Server\AccessControl |
10 | 10 | */ |
11 | -interface AccessControl |
|
12 | -{ |
|
11 | +interface AccessControl { |
|
13 | 12 | /** |
14 | 13 | * Validates if a given request should be able to access what it's trying to |
15 | 14 | * @param APIRequest $request |
@@ -9,7 +9,6 @@ |
||
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 | } |
@@ -14,8 +14,7 @@ |
||
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 |
@@ -13,8 +13,7 @@ |
||
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 |
@@ -7,8 +7,7 @@ discard block |
||
7 | 7 | * Class CachingEndpoint |
8 | 8 | * @package LunixREST\Endpoint |
9 | 9 | */ |
10 | -abstract class CachingEndpoint extends LoggingEndpoint |
|
11 | -{ |
|
10 | +abstract class CachingEndpoint extends LoggingEndpoint { |
|
12 | 11 | /** |
13 | 12 | * @var CacheItemPoolInterface |
14 | 13 | */ |
@@ -17,8 +16,7 @@ discard block |
||
17 | 16 | /** |
18 | 17 | * @param CacheItemPoolInterface $cacheItemPool |
19 | 18 | */ |
20 | - public function setCachePool(CacheItemPoolInterface $cacheItemPool) |
|
21 | - { |
|
19 | + public function setCachePool(CacheItemPoolInterface $cacheItemPool) { |
|
22 | 20 | $this->cachePool = $cacheItemPool; |
23 | 21 | } |
24 | 22 | } |
@@ -10,8 +10,7 @@ discard block |
||
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 |
||
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 | } |
@@ -9,8 +9,7 @@ |
||
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 |