| Total Complexity | 4 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class Bank extends AbstractDocument |
||
| 8 | { |
||
| 9 | 5 | public function getImportRoot(): string |
|
| 10 | { |
||
| 11 | 5 | return 'lst:bank'; |
|
| 12 | } |
||
| 13 | |||
| 14 | /** |
||
| 15 | * {@inheritdoc} |
||
| 16 | */ |
||
| 17 | 5 | protected function getDocumentNamespace(): string |
|
| 18 | { |
||
| 19 | 5 | return 'bnk'; |
|
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | */ |
||
| 25 | 5 | protected function getDocumentName(): string |
|
| 26 | { |
||
| 27 | 5 | return 'bank'; |
|
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | */ |
||
| 33 | 6 | protected function getDefaultDto(): Common\Dtos\AbstractDto |
|
| 36 | } |
||
| 37 | } |
||
| 38 |