Решена проблема кодировок

This commit is contained in:
2024-08-12 16:58:12 +03:00
parent 6b7199a326
commit 9ae73e81cf
4 changed files with 7933 additions and 20 deletions

View File

@ -13,10 +13,10 @@ class ContingentRow
if ($contingent < 0) {
throw new \Exception("Недействительная численность обучающихся!");
}
$this->eduCode = $eduCode;
$this->eduName = $eduName;
$this->eduLevel = $eduLevel;
$this->eduForm = $eduForm;
$this->eduCode = trim($eduCode);
$this->eduName = trim($eduName);
$this->eduLevel = trim($eduLevel);
$this->eduForm = trim($eduForm);
$this->contingent = $contingent;
}