- <?php
- namespace Clevispace;
- use Nette\DI;
- class ComponentFactory extends DI\Container
- {
- /**
- * @param \Nette\DI\Container
- */
- public function __construct(DI\Container $context)
- {
- $this->context = $context;
- }
- public function createLoginForm()
- {
- return new Forms\LoginForm($this->context->user);
- }
- }