Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit d0fd422

Browse files
committed
Fix issues per @webimpress
1 parent e1cdb1b commit d0fd422

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2017, Zend Technologies USA, Inc.
1+
Copyright (c) 2017-2018, Zend Technologies USA, Inc.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
"php": "^7.1",
2424
"psr/container": "^1.0",
2525
"psr/http-message": "^1.0.1",
26-
"psr/http-server-handler": "^1.0",
2726
"psr/http-server-middleware": "^1.0",
2827
"zendframework/zend-diactoros": "^1.7"
2928
},

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/AuthenticationMiddleware.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @see https://github.com/zendframework/zend-expressive-authentication for the canonical source repository
4-
* @copyright Copyright (c) 2018 Zend Technologies USA Inc. (https://www.zend.com)
4+
* @copyright Copyright (c) 2017-2018 Zend Technologies USA Inc. (https://www.zend.com)
55
* @license https://github.com/zendframework/zend-expressive-authentication/blob/master/LICENSE.md New BSD License
66
*/
77

test/AuthenticationMiddlewareTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<?php
22
/**
33
* @see https://github.com/zendframework/zend-expressive-authentication for the canonical source repository
4-
* @copyright Copyright (c) 2018 Zend Technologies USA Inc. (https://www.zend.com)
4+
* @copyright Copyright (c) 2017-2018 Zend Technologies USA Inc. (https://www.zend.com)
55
* @license https://github.com/zendframework/zend-expressive-authentication/blob/master/LICENSE.md New BSD License
66
*/
77

88
declare(strict_types=1);
99

1010
namespace ZendTest\Expressive\Authentication;
1111

12-
use Psr\Http\Server\MiddlewareInterface;
13-
use Psr\Http\Server\RequestHandlerInterface;
1412
use PHPUnit\Framework\TestCase;
1513
use Psr\Http\Message\ResponseInterface;
1614
use Psr\Http\Message\ServerRequestInterface;
15+
use Psr\Http\Server\MiddlewareInterface;
16+
use Psr\Http\Server\RequestHandlerInterface;
1717
use Zend\Expressive\Authentication\AuthenticationInterface;
1818
use Zend\Expressive\Authentication\AuthenticationMiddleware;
1919
use Zend\Expressive\Authentication\UserInterface;

0 commit comments

Comments
 (0)