Example #1
0
 /**
  * @return string
  */
 public function __toString()
 {
     if ($this->open->bare) {
         return '';
     }
     $tag = $this->presenter->renderClosingTag($this);
     if ($this->token) {
         $tag = '<input type="hidden" name="_token" value="' . $this->data->getToken() . '" />' . $tag;
     }
     return $tag;
 }