D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tvinntxo
/
www
/
wp-content
/
plugins
/
mailpoet
/
lib
/
Automation
/
Engine
/
Workflows
/
Filename :
Subject.php
back
Copy
<?php declare(strict_types = 1); namespace MailPoet\Automation\Engine\Workflows; if (!defined('ABSPATH')) exit; interface Subject { public function getKey(): string; /** array<SubjectField> */ public function getFields(): array; public function load(array $args): void; public function pack(): array; }