Completed
Push — master ( d2a62a...df0ee0 )
by Dawid
28s queued 11s
created
src/Annotation/PathItem.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,11 +74,11 @@
 block discarded – undo
74 74
     /**
75 75
      * @var Parameter
76 76
      */
77
-    public $parameters = [];
77
+    public $parameters=[ ];
78 78
 
79 79
     /**
80 80
      * An alternative server array to service all operations in this path.
81 81
      * @var Reference[]
82 82
      */
83
-    public $servers = [];
83
+    public $servers=[ ];
84 84
 }
Please login to merge, or discard this patch.
src/Annotation/PathItem/Operation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
      * Declares this operation to be deprecated. Consumers SHOULD refrain from usage of the declared operation.
64 64
      * @var bool
65 65
      */
66
-    public $deprecated = false;
66
+    public $deprecated=false;
67 67
 
68 68
     /**
69 69
      * @var SecurityRequirement
Please login to merge, or discard this patch.
src/Http/Response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
         // TODO: Implement getStatusCode() method.
72 72
     }
73 73
 
74
-    public function withStatus($code, $reasonPhrase = '')
74
+    public function withStatus($code, $reasonPhrase='')
75 75
     {
76 76
         // TODO: Implement withStatus() method.
77 77
     }
Please login to merge, or discard this patch.
src/Schema/TextPlain.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
     public function __construct(string $string)
10 10
     {
11
-        $this->string = $string;
11
+        $this->string=$string;
12 12
     }
13 13
 
14 14
     public function __toString() : string
Please login to merge, or discard this patch.