Add concordance list for loan type names

This commit is contained in:
Joshua Ramon Enslin 2022-10-30 16:42:08 +01:00
parent 5ff3cfbdfb
commit 909c71621d
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

24
src/MDConcLoanTypes.php Normal file
View File

@ -0,0 +1,24 @@
<?PHP
/**
* Constains lists for categorizing loan types.
*
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
*/
declare(strict_types = 1);
/**
* Provides a list for finding the loan type for an input.
*/
final class MDConcLoanTypes {
const LOAN_TYPES = [
// Outgoing
"ausgehend" => "outgoing",
// Incoming
"eingehend" => "incoming",
];
}