8 lines
168 B
PHP
8 lines
168 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$disposal_method_set = array (
|
|
'sold' => 'Sold',
|
|
'destroyed' => 'Destroyed',
|
|
'garbage' => 'Thrown away / garbage collection',
|
|
);
|