silverstripe-framework/tests/php/Core/Startup/ErrorControlChainMiddleware.../BlankKernel.php

19 lines
300 B
PHP

<?php
namespace SilverStripe\Core\Tests\Startup\ErrorControlChainMiddlewareTest;
use SilverStripe\Core\CoreKernel;
class BlankKernel extends CoreKernel
{
public function __construct($basePath)
{
// Noop
}
public function boot($flush = false)
{
// Noop
}
}