Ejemplo n.º 1
0
 /**
  * Default implementation for use in compiled templates
  *
  * @param array $arguments
  * @param \Closure $renderChildrenClosure
  * @param RenderingContextInterface $renderingContext
  * @return mixed
  */
 public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
 {
     $arguments['validatorName'] = 'NotEmpty';
     return parent::renderStatic($arguments, $renderChildrenClosure, $renderingContext);
 }