Completed
Push — master ( d2a62a...df0ee0 )
by Dawid
28s queued 11s
created
src/Annotation/Header.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,5 +10,5 @@
 block discarded – undo
10 10
  */
11 11
 final class Header extends Parameter
12 12
 {
13
-    public $in = 'header';
13
+    public $in='header';
14 14
 }
Please login to merge, or discard this patch.
src/Annotation/PathItem/QueryParameter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,5 +12,5 @@
 block discarded – undo
12 12
  */
13 13
 class QueryParameter extends Parameter
14 14
 {
15
-    public $in = 'query';
15
+    public $in='query';
16 16
 }
Please login to merge, or discard this patch.
src/Annotation/PathItem/HeaderParameter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,5 +12,5 @@
 block discarded – undo
12 12
  */
13 13
 class HeaderParameter extends Parameter
14 14
 {
15
-    public $in = 'header';
15
+    public $in='header';
16 16
 }
Please login to merge, or discard this patch.
src/Annotation/PathItem/PathParameter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,5 +12,5 @@
 block discarded – undo
12 12
  */
13 13
 class PathParameter extends Parameter
14 14
 {
15
-    public $in = 'path';
15
+    public $in='path';
16 16
 }
Please login to merge, or discard this patch.
src/Annotation/PathItem/CookieParameter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,5 +12,5 @@
 block discarded – undo
12 12
  */
13 13
 class CookieParameter extends Parameter
14 14
 {
15
-    public $in = 'cookie';
15
+    public $in='cookie';
16 16
 }
Please login to merge, or discard this patch.
src/Annotation/SecurityScheme/OAuthFlow.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,6 +35,6 @@
 block discarded – undo
35 35
 
36 36
     protected function getRequiredParameters() : array
37 37
     {
38
-        return ['authorizationUrl', 'tokenUrl', 'scopes'];
38
+        return [ 'authorizationUrl', 'tokenUrl', 'scopes' ];
39 39
     }
40 40
 }
Please login to merge, or discard this patch.
src/Annotation/SecurityScheme/SecurityRequirement.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,6 +15,6 @@
 block discarded – undo
15 15
 
16 16
     public function __construct(array $values)
17 17
     {
18
-        $this->requirement = $values;
18
+        $this->requirement=$values;
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
src/Annotation/SecurityScheme/ApiKey.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,11 +24,11 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Annotation/SecurityScheme/OAuth2.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,11 +19,11 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.