@@ -10,5 +10,5 @@ |
||
10 | 10 | */ |
11 | 11 | final class Header extends Parameter |
12 | 12 | { |
13 | - public $in = 'header'; |
|
13 | + public $in='header'; |
|
14 | 14 | } |
@@ -12,5 +12,5 @@ |
||
12 | 12 | */ |
13 | 13 | class QueryParameter extends Parameter |
14 | 14 | { |
15 | - public $in = 'query'; |
|
15 | + public $in='query'; |
|
16 | 16 | } |
@@ -12,5 +12,5 @@ |
||
12 | 12 | */ |
13 | 13 | class HeaderParameter extends Parameter |
14 | 14 | { |
15 | - public $in = 'header'; |
|
15 | + public $in='header'; |
|
16 | 16 | } |
@@ -12,5 +12,5 @@ |
||
12 | 12 | */ |
13 | 13 | class PathParameter extends Parameter |
14 | 14 | { |
15 | - public $in = 'path'; |
|
15 | + public $in='path'; |
|
16 | 16 | } |
@@ -12,5 +12,5 @@ |
||
12 | 12 | */ |
13 | 13 | class CookieParameter extends Parameter |
14 | 14 | { |
15 | - public $in = 'cookie'; |
|
15 | + public $in='cookie'; |
|
16 | 16 | } |
@@ -35,6 +35,6 @@ |
||
35 | 35 | |
36 | 36 | protected function getRequiredParameters() : array |
37 | 37 | { |
38 | - return ['authorizationUrl', 'tokenUrl', 'scopes']; |
|
38 | + return [ 'authorizationUrl', 'tokenUrl', 'scopes' ]; |
|
39 | 39 | } |
40 | 40 | } |
@@ -15,6 +15,6 @@ |
||
15 | 15 | |
16 | 16 | public function __construct(array $values) |
17 | 17 | { |
18 | - $this->requirement = $values; |
|
18 | + $this->requirement=$values; |
|
19 | 19 | } |
20 | 20 | } |
@@ -24,11 +24,11 @@ |
||
24 | 24 | |
25 | 25 | public function __construct() |
26 | 26 | { |
27 | - $this->type = 'apiKey'; |
|
27 | + $this->type='apiKey'; |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | protected function getRequiredParameters() : array |
31 | 31 | { |
32 | - return ['in', 'name']; |
|
32 | + return [ 'in', 'name' ]; |
|
33 | 33 | } |
34 | 34 | } |
@@ -19,11 +19,11 @@ |
||
19 | 19 | |
20 | 20 | public function __construct() |
21 | 21 | { |
22 | - $this->type = 'oauth2'; |
|
22 | + $this->type='oauth2'; |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | protected function getRequiredParameters() : array |
26 | 26 | { |
27 | - return ['flows']; |
|
27 | + return [ 'flows' ]; |
|
28 | 28 | } |
29 | 29 | } |