# yaymail/trunk/src/Engine/ActDeact.php

YayMail – WooCommerce Email Customizer, version trunk. 23 lines.

- Page: https://pluginprobe.com/plugins/yaymail/trunk/code/src/Engine/ActDeact.php
- Raw: https://pluginprobe.com/plugins/yaymail/trunk/raw/src/Engine/ActDeact.php
- Modified: 2025-06-11T09:55:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/yaymail/trunk/code/src/Engine/ActDeact.php#L10-L20`.

```php
<?php

namespace YayMail\Engine;

use YayMail\Utils\SingletonTrait;
use YayMail\Migrations\MainMigration;
/**
 * Activate and deactive method of the plugin and relates.
 */
class ActDeact {
    use SingletonTrait;

    protected function __construct() {}

    public static function activate() {
    }

    public static function deactivate() {
    }
}

// Shortcodes to be replaced

```
