for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Umbrella\Ya\RetornoBoleto\Model;
class Pessoa
{
protected $nome;
/**
*
* @var Banco
*/
protected $banco;
public function getNome()
return $this->nome;
}
public function getBanco()
return $this->banco;
* @param string $nome
public function setNome($nome)
$this->nome = $nome;
return $this;
public function setBanco(Banco $banco)
$this->banco = $banco;