Skip to content
This repository has been archived by the owner on Jun 23, 2022. It is now read-only.

Commit

Permalink
Fix code style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jasny committed Dec 29, 2016
1 parent b3c785d commit 8f9034f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/DerivedAttribute.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ interface DerivedAttribute
* @return mixed
*/
public function __invoke(ServerRequestInterface $request);
}
}

3 changes: 2 additions & 1 deletion src/ResponseStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -389,4 +389,5 @@ protected function header($string)
{
header($string);
}
}
}

6 changes: 3 additions & 3 deletions src/ServerRequest/ParsedBody.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,22 @@ abstract protected function turnStale();
*
* @return array
*/
abstract function getServerParams();
abstract public function getServerParams();

/**
* Get a header as string
*
* @param string $name
* @return string
*/
abstract function getHeaderLine($name);
abstract public function getHeaderLine($name);

/**
* Get the body
*
* @return StreamInterface
*/
abstract function getBody();
abstract public function getBody();


/**
Expand Down

0 comments on commit 8f9034f

Please sign in to comment.