PATH:
home
/
lab2454c
/
caimegroup.com
/
wp-content
/
plugins
/
mailpoet
/
lib
/
Automation
/
Engine
/
Integration
<?php declare(strict_types = 1); namespace MailPoet\Automation\Engine\Integration; if (!defined('ABSPATH')) exit; use MailPoet\Automation\Engine\Data\Field; use MailPoet\Automation\Engine\Data\Subject as SubjectData; use MailPoet\Validator\Schema\ObjectSchema; /** * @template-covariant T of Payload */ interface Subject { public function getKey(): string; public function getName(): string; public function getArgsSchema(): ObjectSchema; /** @return Field[] */ public function getFields(): array; /** @return T */ public function getPayload(SubjectData $subjectData): Payload; }
[-] Filter.php
[edit]
[-] Action.php
[edit]
[-] index.php
[edit]
[-] Payload.php
[edit]
[+]
..
[-] Trigger.php
[edit]
[-] Subject.php
[edit]
[-] ValidationException.php
[edit]
[-] SubjectTransformer.php
[edit]
[-] Step.php
[edit]