sveden-parser/app/library/Size.php

27 lines
778 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// Численность обучающихся
// по разным формам бюджета
class Size
{
// Всего [обучающихся]
private int $all;
// Из низ иностранные граждане
private int $foreigners;
public function __construct() {}
public function update(
int|string $all,
int|string $foreigners
): void {
$this->all = (int)$all;
$this->foreigners = (int)$foreigners;
}
public function getData(): array{
return [
"Всего" => $this->all,
"Из них численность обучающихся,
являющихся иностранными гражданами" => $this->foreigners
];
}
}