Skip to content

Instantly share code, notes, and snippets.

@galvao
Created September 26, 2019 13:37
Show Gist options
  • Save galvao/ea5a3f6373feb41861ab887414cdec2a to your computer and use it in GitHub Desktop.
Save galvao/ea5a3f6373feb41861ab887414cdec2a to your computer and use it in GitHub Desktop.
Correção: ProdutoController
public function cadastrarAction()
{
$requisicao = $this->getRequest();
if ($requisicao->isPost()) {
$dados = $requisicao->getPost();
$model = new Produto();
$model->exchangeArray($dados);
$this->table->cadastrar($model);
}
return new ViewModel([
'nome' => $dados['nome'],
]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment