phpcs fixes

This commit is contained in:
Dennis Eichhorn 2018-02-16 16:17:01 +01:00
parent 3059003191
commit 2fbf79bce0
2 changed files with 7 additions and 3 deletions

View File

@ -70,6 +70,8 @@ abstract class HeaderAbstract
/**
* Set header locked.
*
* @return void
*
* @since 1.0.0
*/
@ -162,6 +164,8 @@ abstract class HeaderAbstract
* Generate header based on status code.
*
* @param int $statusCode Status code
*
* @return void
*
* @since 1.0.0
*/
@ -194,10 +198,12 @@ abstract class HeaderAbstract
* @param string $key Header key
* @param string $value Header value
* @param bool $overwrite Overwrite if key already exists
*
* @return void
*
* @since 1.0.0
*/
abstract public function set(string $key, string $value, bool $overwrite = false);
abstract public function set(string $key, string $value, bool $overwrite = false); /* : void */
/**
* Get header by key.

View File

@ -91,8 +91,6 @@ class Request extends RequestAbstract
*
* This is used in order to either initialize the current http request or a batch of GET requests
*
* @param void
*
* @return void
*
* @since 1.0.0