Total Complexity | 5 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
3 | class Gen |
||
4 | { |
||
5 | /** @var string */ |
||
6 | protected $test_dir_path; |
||
7 | |||
8 | /** @var string */ |
||
9 | protected $src_dir_path; |
||
10 | |||
11 | protected $template_path; |
||
12 | |||
13 | public function __construct() |
||
14 | { |
||
15 | $this->test_dir_path = __DIR__ . '/tests/Unit/Message/Traits/ModelField/'; |
||
16 | $this->src_dir_path = __DIR__ . '/src/CloudPayments/Message/Traits/ModelField/'; |
||
17 | $this->template_path = __DIR__ . '/tests/Unit/Message/Traits/ModelField/AccountIdStringTest.php'; |
||
18 | } |
||
19 | |||
20 | public function run() |
||
37 | } |
||
38 | } |
||
39 | } |
||
40 | |||
41 | protected function getTemplate(): string |
||
49 | $gen->run(); |