first commit
This commit is contained in:
40
modules/Develop/Providers/Install.php
Normal file
40
modules/Develop/Providers/Install.php
Normal file
@@ -0,0 +1,40 @@
|
||||
<?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.
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user