41 lines
708 B
PHP
41 lines
708 B
PHP
<?php
|
|
|
|
namespace Modules\Develop\Providers;
|
|
|
|
use Catch\Support\Module\Installer;
|
|
|
|
/**
|
|
* install
|
|
*/
|
|
class Install extends Installer
|
|
{
|
|
protected function info(): array
|
|
{
|
|
// TODO: Implement info() method.
|
|
return [];
|
|
}
|
|
|
|
|
|
protected function migration(): string
|
|
{
|
|
// TODO: Implement migration() method.
|
|
return '';
|
|
}
|
|
|
|
protected function seeder(): string
|
|
{
|
|
// TODO: Implement seed() method.
|
|
return '';
|
|
}
|
|
|
|
protected function requirePackages(): void
|
|
{
|
|
// TODO: Implement requirePackages() method.
|
|
}
|
|
|
|
protected function removePackages(): void
|
|
{
|
|
// TODO: Implement removePackages() method.
|
|
}
|
|
}
|