| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace ModulesGarden\ProxmoxAddon\App\Configuration\Addon\Update\Patch;
- use Illuminate\Database\Capsule\Manager as DB;
- use ModulesGarden\ProxmoxAddon\App\Configuration\Addon\Update\DefaultPatch;
- use ModulesGarden\ProxmoxAddon\App\Models\ProductConfiguration;
- use ModulesGarden\ProxmoxAddon\App\Models\VirtualInterface;
- use ModulesGarden\ProxmoxAddon\App\Models\VmIpAddress;
- use ModulesGarden\ProxmoxAddon\App\Models\Whmcs\Hosting;
- use ModulesGarden\ProxmoxAddon\App\Models\Whmcs\Product;
- use ModulesGarden\ProxmoxAddon\Core\Helper;
- use ModulesGarden\ProxmoxAddon\Core\ModuleConstants;
- /**
- * Description of M2M6P0
- *
- */
- class M3M1P1 extends DefaultPatch
- {
- public function execute()
- {
- if ($this->runSchema())
- {
- Helper\sl('logger')
- ->addDebug("Correctly installed update {$this->getVersion()} .", []);
- }
- else
- {
- Helper\sl('errorManager')
- ->addError(self::class, "Incorrectly installed update {$this->getVersion()} .", []);
- }
- //data
- $this->up();
- }
- }
|