This commit is contained in:
2026-07-02 15:54:39 -06:00
commit 9883323161
17470 changed files with 4470592 additions and 0 deletions
@@ -0,0 +1,23 @@
<?php
namespace Vrts\Features;
use Vrts\Models\Test_Run;
class Deactivate {
/**
* Constructor.
*/
public function __construct() {
register_deactivation_hook( vrts()->get_plugin_file(), [ $this, 'deactivate' ] );
}
/**
* Deactivate plugin.
*/
public function deactivate() {
Test_Run::delete_all_not_finished();
Service::disconnect_service();
}
}