Odyssey
loan-generator-includes.php
1 <?php
2 /**
3  * @copyright HomeCu 05/2019
4  *
5  * A stub to include all the files we need, which we wouldn't need if autoloading was in place.
6  */
7 // Needed from the existing system. We are only using db_pconnect in db.postgres.i
8 require_once(__DIR__ . '/../../../../../app/web/shared/library/hcuCommon.i');
9 require_once(__DIR__ . '/../../../../../app/web/shared/library/db.postgres.i');
10 require_once(__DIR__ . '/../../../../../app/web/shared/library/hcuEnv.i');
11 
12 // For the test loan generator
13 require_once(__DIR__ . '/../../../../../app/web/shared/library/classes/CsvToArray/CsvToArray.php');
14 require_once('DbLoanCreator.php');
15 require_once('LoanGeneratorMapper.php');
16 require_once('LoanDataGenerator.php');
17