| Total Complexity | 5 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 15 | class TransferConfig extends SprykerTransferConfig |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @return array<string> |
||
| 19 | */ |
||
| 20 | public function getEntitiesSourceDirectories(): array |
||
| 21 | { |
||
| 22 | return [ |
||
| 23 | APPLICATION_SOURCE_DIR . '/Orm/Propel/*/Schema/', |
||
| 24 | ]; |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * We use strict name validation for core internal usage and enable this by default for all |
||
| 29 | * new projects. |
||
| 30 | * |
||
| 31 | * @return bool |
||
| 32 | */ |
||
| 33 | public function isTransferNameValidated(): bool |
||
| 34 | { |
||
| 35 | return true; |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return bool |
||
| 40 | */ |
||
| 41 | public function isTransferXmlValidationEnabled(): bool |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return string |
||
| 48 | */ |
||
| 49 | public function getPropertyDescriptionMergeStrategy(): string |
||
| 52 | } |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @return bool |
||
| 56 | */ |
||
| 57 | public function isTransferSuffixCheckStrict(): bool |
||
| 62 |