set(HelloWorldController::class, function (ContainerInterface $c) { return new HelloWorldController( $c->get(HelloWorld::class) ); }); // Services $container->set(HelloWorld::class, function () { return new HelloWorld(); }); return $container; } }