Skip to content

Commit

Permalink
Update UspdevValidator.php
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagogomesverissimo authored Oct 10, 2024
1 parent df746b5 commit 01640e0
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/UspdevValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ public function graduacao($attribute, $value, $parameters) {
return Graduacao::verifica($value, $unidade);
}

public function alunoconvenioint($attribute, $value, $parameters) {
if(empty(trim($value))) return true;

$unidade = getenv('REPLICADO_CODUNDCLG');
return Graduacao::verificarAlunoConvenioInt($value, $unidade);
}

public function patrimonio($attribute, $value, $parameters) {
if(empty(trim($value))) return true;

Expand Down

0 comments on commit 01640e0

Please sign in to comment.