Skip to content

Commit

Permalink
fix: Import.php
Browse files Browse the repository at this point in the history
  • Loading branch information
igorgoncalves committed Apr 16, 2024
1 parent 169b35a commit 60a80f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/Import.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public function importRegister00($lines, $year)
foreach ($lines as $line) {

$schoolIdentificationModel = SchoolIdentification::model()->find("inep_id = :inep_id", ["inep_id" => $line[1]]);
if ($schoolIdentification == null) {
if ($schoolIdentificationModel == null) {
$schoolIdentificationModel = new SchoolIdentification();
}

Expand Down

0 comments on commit 60a80f8

Please sign in to comment.