8 lines
201 B
PHP
8 lines
201 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$disposal_method_set = array (
|
|
'sold' => 'Продано',
|
|
'destroyed' => 'Знищено',
|
|
'garbage' => 'Викинуте / вивезення сміття',
|
|
);
|