The Kernel is the heart of every AppKit application. It acts as the HTTP request handler, the service container, and the boot coordinator. Your application's App class extends it.
namespace App;
use Modufolio\Appkit\Core\Kernel;
class App extends Kernel
{
public function handle(ServerRequestInterface $request): ResponseInterface { ... }
public function reset(): void { ... }
public function serializer(): SerializerInterface { ... }
public function parameterResolver(): ParameterResolverInterface { ... }
public function validator(): ValidatorInterface { ... }
public function userProvider(): UserProviderInterface { ... }
}These six abstract methods are your integration points. The skeleton's src/App.php provides a complete implementation you can use as a reference.
public/index.phpcallsAppFactory::create($baseDir)— this instantiatesApp, loads config files, and callsboot().boot()loadsconfig/interfaces.php, sets up the router cache directory, and freezes the token unserializer whitelist.handle(ServerRequestInterface $request)is called. It creates a freshNativeApplicationStatefor the request, then callshandleAuthentication().handleAuthentication()determines the active firewall, attempts session token restoration, runs authenticators if needed, and either callscontrollerResolver()or returns an authentication response.controllerResolver()enforces global access control, matches the route, enforces attribute-level access control (#[IsGranted]), instantiates the controller, resolves method parameters, and calls the controller method.- The controller returns a
ResponseInterface.prepareResponse()finalises headers and cookies. - The response is emitted to the client.
reset()clears request-scoped state.
Modufolio\Appkit\Core\Environment is an enum with three cases.
use Modufolio\Appkit\Core\Environment;
Environment::DEV // 'dev'
Environment::TEST // 'test'
Environment::PROD // 'prod'Helper methods:
$env->isDev(); // bool
$env->isTest(); // bool
$env->isProd(); // boolThe current environment is read from APP_ENV. It affects router caching (var/cache/router in prod), debug mode, and exception detail visibility.
Access the environment from anywhere you have the kernel:
$this->environment()->isProd(); // inside App or a class with access to the kernelNativeApplicationState is created once per request and holds request-scoped data: the current ServerRequestInterface, the session, the token storage, firewall cache, and controller instances. The concept is inspired by Axum's State extractor from Rust.
After the response is sent, reset() clears this state. This makes AppKit compatible with RoadRunner, where the same process handles many requests. No static state means no memory leaks between requests.
Session cookies are set with HttpOnly and SameSite=Lax by default. Set COOKIE_SECURE=true in your environment to add the Secure flag.
The Kernel implements ContainerInterface. Call get(string $id) to resolve a service.
Resolution order:
- Interface map (
config/interfaces.php) - Singleton instances (already-created services)
- Repositories (Doctrine entity repositories)
- Authenticators (
config/authenticators.php) - Factories (
config/factories.php) NotFoundExceptionif nothing matched
use Doctrine\ORM\EntityManagerInterface;
$em = $this->get(EntityManagerInterface::class);You rarely call get() directly. Dependencies are wired through config files and injected into controllers. See Dependency injection.
The Kernel exposes lazy-loaded services as methods. Use these inside App or config closures.
| Method | Returns |
|---|---|
entityManager() |
EntityManagerInterface |
environment() |
Environment |
router() |
RouterInterface |
session() |
FlashBagAwareSessionInterface |
tokenStorage() |
TokenStorageInterface |
userProvider() |
UserProviderInterface |
validator() |
ValidatorInterface |
serializer() |
SerializerInterface |
parameterResolver() |
ParameterResolverInterface |
exceptionHandler() |
ExceptionHandlerInterface |
logger() |
LoggerInterface |
emitter() |
EmitterInterface |
$this->url('/login'); // https://example.com/login (base derived from the current request)
$this->baseUrl(); // https://example.com (scheme://host[:port] of the request)
$this->generateUrl('home'); // /
$this->generateUrl('post.show', ['slug' => 'hello']); // /posts/hellogenerateUrl() wraps Symfony's UrlGenerator. The third argument accepts UrlGeneratorInterface::ABSOLUTE_URL to force a full URL.
Store and retrieve scalar configuration values.
$this->setParameter('app.name', 'My App');
$this->getParameter('app.name'); // 'My App'
$this->hasParameter('app.name'); // trueParameters are available inside controller config as %app.name% strings.
AppFactory::create(string $baseDir) is the standard entry point. The factory pattern is inspired by Slim PHP. It:
- Registers
User::classwithTokenUnserializer(whitelist-based session deserialization). - Creates a route loader that scans
src/Controller/for#[Route]attributes and also loads PHP route files. - Reads
config/security.phpand applies the firewall configuration. - Passes all config arrays to
App, callsconfigureSecurity(), and callsboot().
You can create your own factory if you need a different setup.