123456789101112131415161718192021222324252627282930 |
- <?php
- namespace Modules\Common\Repository\Options;
- use Catch\Enums\Status as StatusEnum;
- class CommonParams implements OptionInterface
- {
- public function get(): array
- {
-
- $commonConfig = config('common.common');
- return [
-
- 'payType' => $commonConfig['payType'],
-
- 'miniprogramType' => $commonConfig['miniprogramType'],
-
- 'firstPageListType' => $commonConfig['firstPageListType'],
- ];
- }
- }
|