@@ -3,8 +3,7 @@ |
||
3 | 3 | |
4 | 4 | use LunixREST\APIResponse\Exceptions\NotAcceptableResponseTypeException; |
5 | 5 | |
6 | -interface ResponseFactory |
|
7 | -{ |
|
6 | +interface ResponseFactory { |
|
8 | 7 | /** |
9 | 8 | * @param APIResponseData $data |
10 | 9 | * @param array $acceptedMIMETypes - acceptable MIME types in order of preference |
@@ -9,8 +9,7 @@ discard block |
||
9 | 9 | * Class AllAccessListAccessControl |
10 | 10 | * @package LunixRESTBasics\AccessControl |
11 | 11 | */ |
12 | -class AllAccessConfigurationListAccessControl implements AccessControl |
|
13 | -{ |
|
12 | +class AllAccessConfigurationListAccessControl implements AccessControl { |
|
14 | 13 | /** |
15 | 14 | * @var Configuration |
16 | 15 | */ |
@@ -30,8 +29,7 @@ discard block |
||
30 | 29 | * @param $namespace |
31 | 30 | * @param string $configKey key to use when accessing the list of valid keys from the $config |
32 | 31 | */ |
33 | - public function __construct(Configuration $config, string $namespace, string $configKey = 'keys') |
|
34 | - { |
|
32 | + public function __construct(Configuration $config, string $namespace, string $configKey = 'keys') { |
|
35 | 33 | $this->config = $config; |
36 | 34 | $this->configKey = $configKey; |
37 | 35 | $this->namespace = $namespace; |
@@ -41,8 +39,7 @@ discard block |
||
41 | 39 | * @param \LunixREST\APIRequest\APIRequest $request |
42 | 40 | * @return bool true if this key is valid |
43 | 41 | */ |
44 | - public function validateAccess(APIRequest $request) |
|
45 | - { |
|
42 | + public function validateAccess(APIRequest $request) { |
|
46 | 43 | return $this->validateKey($request->getApiKey()); |
47 | 44 | } |
48 | 45 | |
@@ -50,8 +47,7 @@ discard block |
||
50 | 47 | * @param $apiKey |
51 | 48 | * @return bool true if the key is found inside of the array returned by the config when $config->get is called with the key from the constructor |
52 | 49 | */ |
53 | - public function validateKey($apiKey) |
|
54 | - { |
|
50 | + public function validateKey($apiKey) { |
|
55 | 51 | return in_array($apiKey, $this->config->get($this->configKey, $this->namespace)); |
56 | 52 | } |
57 | 53 | } |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | */ |
23 | 23 | public function register(string $name, string $version, Endpoint $endpoint) |
24 | 24 | { |
25 | - if(!isset($this->endpoints[$version])) { |
|
25 | + if (!isset($this->endpoints[$version])) { |
|
26 | 26 | $this->endpoints[$version] = []; |
27 | 27 | } |
28 | 28 | $this->endpoints[$version][strtolower($name)] = $endpoint; |
@@ -37,8 +37,8 @@ discard block |
||
37 | 37 | public function getEndpoint(string $name, string $version): Endpoint |
38 | 38 | { |
39 | 39 | $lowercaseName = strtolower($name); |
40 | - if(!isset($this->endpoints[$version]) && !isset($this->endpoints[$version][$lowercaseName])) { |
|
41 | - throw new UnknownEndpointException('Could not find endpoint: ' . $name . ' of version: ' . $version); |
|
40 | + if (!isset($this->endpoints[$version]) && !isset($this->endpoints[$version][$lowercaseName])) { |
|
41 | + throw new UnknownEndpointException('Could not find endpoint: '.$name.' of version: '.$version); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | return $this->endpoints[$version][$lowercaseName]; |
@@ -8,8 +8,7 @@ discard block |
||
8 | 8 | * Class RegisteredEndpointFactory |
9 | 9 | * @package LunixREST\Endpoint |
10 | 10 | */ |
11 | -class RegisteredEndpointFactory implements EndpointFactory |
|
12 | -{ |
|
11 | +class RegisteredEndpointFactory implements EndpointFactory { |
|
13 | 12 | /** |
14 | 13 | * @var Endpoint[][] |
15 | 14 | */ |
@@ -20,8 +19,7 @@ discard block |
||
20 | 19 | * @param string $version |
21 | 20 | * @param Endpoint $endpoint |
22 | 21 | */ |
23 | - public function register(string $name, string $version, Endpoint $endpoint) |
|
24 | - { |
|
22 | + public function register(string $name, string $version, Endpoint $endpoint) { |
|
25 | 23 | if(!isset($this->endpoints[$version])) { |
26 | 24 | $this->endpoints[$version] = []; |
27 | 25 | } |