Esempio n. 1
0
 /**
  * @param Response           $response    Response
  * @param RestUtilsInterface $restUtils   Rest utils
  * @param Router             $router      Router
  * @param ValidatorInterface $validator   Validator
  * @param EngineInterface    $templating  Templating
  * @param FormFactory        $formFactory form factory
  * @param DocumentType       $formType    generic form
  * @param ContainerInterface $container   Container
  * @param SchemaUtils        $schemaUtils schema utils
  * @param FileSystem         $gaufrette   file system abstraction layer for s3 and more
  */
 public function __construct(Response $response, RestUtilsInterface $restUtils, Router $router, ValidatorInterface $validator, EngineInterface $templating, FormFactory $formFactory, DocumentType $formType, ContainerInterface $container, SchemaUtils $schemaUtils, Filesystem $gaufrette)
 {
     parent::__construct($response, $restUtils, $router, $validator, $templating, $formFactory, $formType, $container, $schemaUtils);
     $this->gaufrette = $gaufrette;
 }
 /**
  * @param Response               $response    Response
  * @param RestUtilsInterface     $restUtils   Rest utils
  * @param Router                 $router      Router
  * @param ValidatorInterface     $validator   Validator
  * @param EngineInterface        $templating  Templating
  * @param FormFactory            $formFactory form factory
  * @param DocumentType           $formType    generic form
  * @param ContainerInterface     $container   Container
  * @param SchemaUtils            $schemaUtils Schema utils
  * @param CustomerDiffRepository $diffRepo    repo containing customer diffs
  */
 public function __construct(Response $response, RestUtilsInterface $restUtils, Router $router, ValidatorInterface $validator, EngineInterface $templating, FormFactory $formFactory, DocumentType $formType, ContainerInterface $container, SchemaUtils $schemaUtils, CustomerDiffRepository $diffRepo)
 {
     parent::__construct($response, $restUtils, $router, $validator, $templating, $formFactory, $formType, $container, $schemaUtils);
     $this->diffRepo = $diffRepo;
 }