9 lines
189 B
PHP
9 lines
189 B
PHP
|
<?PHP
|
||
|
declare(strict_types = 1);
|
||
|
$institution_public_private_category_set = array (
|
||
|
'public' => 'Public',
|
||
|
'private' => 'Private',
|
||
|
'religious' => 'Religious',
|
||
|
'mixed' => 'Mixed',
|
||
|
);
|