| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class Order extends AbstractDocument |
||
| 13 | { |
||
| 14 | use AddActionTypeTrait; |
||
| 15 | |||
| 16 | 11 | public function getImportRoot(): string |
|
| 17 | { |
||
| 18 | 11 | return 'lst:order'; |
|
| 19 | } |
||
| 20 | |||
| 21 | 11 | protected function getDocumentNamespace(): string |
|
| 24 | } |
||
| 25 | |||
| 26 | 11 | protected function getDocumentName(): string |
|
| 27 | { |
||
| 28 | 11 | return 'order'; |
|
| 29 | } |
||
| 30 | |||
| 31 | 11 | protected function getDefaultDto(): Common\Dtos\AbstractDto |
|
| 34 | } |
||
| 35 | } |
||
| 36 |