* updated expressive version

This commit is contained in:
Danyi Dávid
2018-11-12 07:09:32 +01:00
parent 17ec066110
commit d77a3e4211
109 changed files with 5980 additions and 2606 deletions

View File

@@ -2,7 +2,7 @@
namespace AppTest\Action;
use App\Action\PingAction;
use App\Handler\PingHandler;
use Interop\Http\ServerMiddleware\DelegateInterface;
use PHPUnit\Framework\TestCase;
use Psr\Http\Message\ServerRequestInterface;
@@ -12,7 +12,7 @@ class PingActionTest extends TestCase
{
public function testResponse()
{
$pingAction = new PingAction();
$pingAction = new PingHandler();
$response = $pingAction->process(
$this->prophesize(ServerRequestInterface::class)->reveal(),
$this->prophesize(DelegateInterface::class)->reveal()