Skip to content

Commit 8259008

Browse files
tswonkeStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent 29a68f6 commit 8259008

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/ApiController.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ protected function getRequestBody($key = null)
5656
protected function setResponseStatusCode($statusCode)
5757
{
5858
$this->responseStatusCode = $statusCode;
59+
5960
return $this;
6061
}
6162

@@ -71,24 +72,28 @@ protected function setResponseHttpHeader(array $header)
7172
protected function setResponseHeader($header)
7273
{
7374
$this->responseHeader = $header;
75+
7476
return $this;
7577
}
7678

7779
protected function setResponseType($responseType)
7880
{
7981
$this->responseType = $responseType;
82+
8083
return $this;
8184
}
8285

8386
protected function setResponseMessage($responseMessage)
8487
{
8588
$this->responseMessage = $responseMessage;
89+
8690
return $this;
8791
}
8892

8993
protected function setResponsePayload($data)
9094
{
9195
$this->responsePayload = $data;
96+
9297
return $this;
9398
}
9499

@@ -192,4 +197,3 @@ private function prepareRespondData()
192197
}
193198
}
194199
}
195-

0 commit comments

Comments
 (0)