createContainer() public method

public createContainer ( string $type, string $name, string $label = NULL ) : FluidTYPO3\Flux\Form\ContainerInterface
$type string
$name string
$label string
return FluidTYPO3\Flux\Form\ContainerInterface
 /**
  * @param string $type
  * @param string $name
  * @param null $label
  * @return ContainerInterface
  */
 public function createContainer($type, $name, $label = NULL)
 {
     $container = parent::createContainer($type, $name, $label);
     $this->add($container);
     return $container;
 }