Overview

Namespaces

  • Faulancer
    • Controller
    • Exception
    • Form
      • Validator
        • Type
    • Helper
      • Reflection
    • Http
    • Mail
    • ORM
      • User
    • Service
      • Factory
    • ServiceLocator
    • Session
    • View
      • Helper

Classes

  • Kernel
  • Overview
  • Namespace
  • Class
  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:  66:  67:  68:  69:  70:  71:  72:  73:  74:  75:  76:  77:  78:  79:  80:  81:  82:  83:  84:  85:  86:  87:  88:  89:  90:  91:  92:  93:  94:  95:  96:  97:  98:  99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 
<?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\Exception;
use Faulancer\Http\Request;
use Faulancer\Service\Config;


/**
 * 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
     * @codeCoverageIgnore
     */
    public function run()
    {
        $dispatcher = new Dispatcher($this->request, $this->config);

        try {

            $this->registerErrorHandler();

            ob_start();
            echo $dispatcher->dispatch()->getContent();
            $content = ob_get_contents();
            ob_end_clean();
            return $content;

        } catch (Exception $e) {
            return $this->showErrorPage($this->request, $e);
        } catch (\ErrorException $e) {
            return $this->showErrorPage($this->request, $e);
        } catch (\Error $e) {
            return $this->showErrorPage($this->request, $e);
        }

    }

    /**
     * @param $request
     * @param $e
     * @return Http\Response
     * @codeCoverageIgnore
     */
    private function showErrorPage($request, $e)
    {
        $errorController = new ErrorController($request, $e);
        return $errorController->displayError();
    }

    /**
     * Register error handler
     */
    protected function registerErrorHandler()
    {
        set_error_handler([$this, 'errorHandler'], E_ALL);
    }

    /**
     * Custom error handler
     *
     * @param $errno
     * @param $errmsg
     * @param $errfile
     * @param $errline
     * @throws \ErrorException
     * @codeCoverageIgnore
     */
    public function errorHandler($errno, $errmsg, $errfile, $errline)
    {
        throw new \ErrorException($errmsg, $errno, 1, $errfile, $errline);
    }

}



API documentation generated by ApiGen