Renamed domain FormManagement to Form

This commit is contained in:
Kevin Frantz
2019-05-30 16:13:29 +02:00
parent 8307016460
commit 145b093e7c
16 changed files with 25 additions and 25 deletions

View File

@@ -0,0 +1,39 @@
<?php
namespace Infinito\Domain\Form;
use Symfony\Component\Form\FormBuilderInterface;
use Infinito\Domain\RequestManagement\Action\RequestedActionServiceInterface;
use Symfony\Component\Form\FormFactoryInterface;
/**
* @author kevinfrantz
*/
final class RequestedActionFormBuilderService extends RequestedActionFormBuilder implements RequestedActionFormBuilderServiceInterface
{
/**
* @var RequestedActionServiceInterface
*/
private $requestedActionService;
/**
* {@inheritdoc}
*
* @see \Infinito\Domain\Form\RequestedActionFormBuilder::__construct()
*/
public function __construct(FormFactoryInterface $formFactory, FormClassNameServiceInterface $formClassNameService, RequestedActionServiceInterface $requestedActionService)
{
parent::__construct($formFactory, $formClassNameService);
$this->requestedActionService = $requestedActionService;
}
/**
* {@inheritdoc}
*
* @see \Infinito\Domain\Form\RequestedActionFormBuilderServiceInterface::createByRequestedActionService()
*/
public function createByService(): FormBuilderInterface
{
return parent::create($this->requestedActionService);
}
}