Skip to content

Commit

Permalink
Style code
Browse files Browse the repository at this point in the history
  • Loading branch information
levidurfee committed Aug 1, 2018
1 parent b8da9bb commit c92b231
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Factories/Zend/ResponseFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function createResponse(int $code = 200, string $reasonPhrase = ''): Resp
{
$response = new Response('php://memory', $code, []);

if($reasonPhrase) {
if ($reasonPhrase) {
$response = $response->withStatus($code, $reasonPhrase);
}

Expand Down
2 changes: 1 addition & 1 deletion src/FactoryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class FactoryBuilder
{
public static function get($choice): HttpFactoryInterface
{
switch($choice) {
switch ($choice) {
case 'guzzle':
return new GuzzleHttpFactory;
break;
Expand Down

0 comments on commit c92b231

Please sign in to comment.