Commit 822ff0db authored by alissonalbuquerque's avatar alissonalbuquerque
Browse files

add status: em revisao

parent 318f264a
......@@ -12,6 +12,7 @@ class Status
const FINALIZADO = 5;
const REPROVADO = 6;
const APROVADO = 7;
const EM_REVISAO = 8;
public static function listStatus($value = null)
{
......@@ -23,7 +24,8 @@ class Status
self::ARQUIVADO => 'Arquivado',
self::FINALIZADO => 'Finalizado',
self::REPROVADO => 'Reprovado',
self::APROVADO => 'Aprovado'
self::APROVADO => 'Aprovado',
self::EM_REVISAO => 'Em Revisão'
];
return $value !== null ? $values[$value] : $values;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment