init
This commit is contained in:
16
vendor/codeception/base/src/Codeception/Lib/Connector/Lumen/DummyKernel.php
vendored
Normal file
16
vendor/codeception/base/src/Codeception/Lib/Connector/Lumen/DummyKernel.php
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
namespace Codeception\Lib\Connector\Lumen;
|
||||
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
use Symfony\Component\HttpKernel\HttpKernelInterface;
|
||||
|
||||
/**
|
||||
* Dummy kernel to satisfy the parent constructor of the LumenConnector class.
|
||||
*/
|
||||
class DummyKernel implements HttpKernelInterface
|
||||
{
|
||||
public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true)
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user