1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65:
<?php
/**
* Class Kernel | File Kernel.php
*
* @package Faulancer
* @author Florian Knapp <office@florianknapp.de>
*/
namespace Faulancer;
use Faulancer\Controller\Dispatcher;
use Faulancer\Controller\ErrorController;
use Faulancer\Exception\DispatchFailureException;
use Faulancer\Http\Request;
use Faulancer\Service\Config;
use Faulancer\ServiceLocator\ServiceLocator;
/**
* Class Kernel
*/
class Kernel
{
/**
* The current request object
* @var Request
*/
protected $request;
/**
* The configuration object
* @var Config
*/
protected $config;
/**
* Kernel constructor.
*
* @param Request $request
* @param Config $config
*/
public function __construct(Request $request, Config $config)
{
$this->request = $request;
$this->config = $config;
}
/**
* Initialize the application
*
* @return mixed
* @throws Exception\ConfigInvalidException
* @codeCoverageIgnore
*/
public function run()
{
$dispatcher = new Dispatcher($this->request, $this->config);
try {
return $dispatcher->run()->getContent();
} catch (DispatchFailureException $e) {
return ErrorController::notFoundAction()->getContent();
}
}
}