12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace Modules\Develop\Providers;
- use Catch\Support\Module\Installer;
- class Install extends Installer
- {
- protected function info(): array
- {
-
- return [];
- }
- protected function migration(): string
- {
-
- return '';
- }
- protected function seeder(): string
- {
-
- return '';
- }
- protected function requirePackages(): void
- {
-
- }
- protected function removePackages(): void
- {
-
- }
- }
|