mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-03 18:58:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?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);
 | 
						|
    }
 | 
						|
}
 |