Ejemplo n.º 1
0
 public function getPainel(VerificaEstadoPainel $estado)
 {
     if ($estado->getEstado() === PainelConstantes::PADRAO) {
         echo PainelConstantes::PADRAO;
     } else {
         return $this->proximo->getPainel($estado);
     }
 }
Ejemplo n.º 2
0
 public function getPainel(VerificaEstadoPainel $estado)
 {
     if ($estado->getEstado() === PainelConstantes::ADMIN) {
         $this->imprimirPainel($estado->getClass());
     } else {
         return $this->proximo->getPainel($estado);
     }
 }