Skip to content

Commit

Permalink
Code style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Jan 24, 2018
1 parent 909bbfa commit 6f5dbed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Https.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

namespace Middlewares;

use Psr\Http\Server\MiddlewareInterface;
use Psr\Http\Server\RequestHandlerInterface;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Message\UriInterface;
use Psr\Http\Server\MiddlewareInterface;
use Psr\Http\Server\RequestHandlerInterface;

class Https implements MiddlewareInterface
{
Expand Down
2 changes: 1 addition & 1 deletion tests/HttpsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public function testCustomMaxAge()
{
$response = Dispatcher::run(
[
(new Https())->maxAge(10)
(new Https())->maxAge(10),
],
Factory::createServerRequest([], 'GET', 'https://domain.com')
);
Expand Down

0 comments on commit 6f5dbed

Please sign in to comment.