mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 15:40:25 +00:00
15 lines
272 B
PHP
15 lines
272 B
PHP
<?php
|
|
|
|
namespace Modules\Microweber;
|
|
|
|
use App\ModulePostInstall;
|
|
use Modules\Microweber\Filament\Clusters\Microweber\Pages\Version;
|
|
|
|
class PostInstall extends ModulePostInstall
|
|
{
|
|
public $supportLog = false;
|
|
public function run()
|
|
{
|
|
return true;
|
|
}
|
|
}
|