for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
/*
* This file is part of coisa/http.
*
* (c) Felipe Sayão Lobato Abreu <[email protected]>
* This source file is subject to the license that is bundled
* with this source code in the file LICENSE.
*/
namespace CoiSA\Http\Test\Middleware;
use CoiSA\Http\Middleware\JsonpCallbackMiddleware;
use CoiSA\Http\Test\Handler\AbstractMiddlewareTest;
/**
* Class JsonpCallbackMiddlewareTest
* @package CoiSA\Http\Test\Middleware
final class JsonpCallbackMiddlewareTest extends AbstractMiddlewareTest
{
public function setUp(): void
parent::setUp();
$this->middleware = new JsonpCallbackMiddleware();
}