Install.php 708 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace Modules\Develop\Providers;
  3. use Catch\Support\Module\Installer;
  4. /**
  5. * install
  6. */
  7. class Install extends Installer
  8. {
  9. protected function info(): array
  10. {
  11. // TODO: Implement info() method.
  12. return [];
  13. }
  14. protected function migration(): string
  15. {
  16. // TODO: Implement migration() method.
  17. return '';
  18. }
  19. protected function seeder(): string
  20. {
  21. // TODO: Implement seed() method.
  22. return '';
  23. }
  24. protected function requirePackages(): void
  25. {
  26. // TODO: Implement requirePackages() method.
  27. }
  28. protected function removePackages(): void
  29. {
  30. // TODO: Implement removePackages() method.
  31. }
  32. }