Link Search Menu Expand Document

Application

The Application Flexible\Application is the entry point to the framework. Think about it as a manager that glues all parts.

<?php

use Flexible\Application;
use Flexible\Http\ServerRequest;

require __DIR__ . '/vendor/autoload.php';

$app = Application::create();

$app->router()->get('/', App\SomeController::class);

$app->emit(
    $app->handle(ServerRequest::fromGlobals())
);