gerarBoleto() public method

public gerarBoleto ( )
Exemplo n.º 1
0
 /**
  * Render HTML
  *
  * @return string
  * @throws \Exception
  */
 public function renderHTML()
 {
     $html = new Html($this->toArray());
     return $html->gerarBoleto();
 }
Exemplo n.º 2
0
 /**
  * Render HTML
  *
  * @param bool   $print
  *
  * @return string
  * @throws \Exception
  */
 public function renderHTML($print = false)
 {
     $html = new Html($this->toArray());
     return $html->gerarBoleto($print);
 }