PluginProbe
CryptX / 3.5.2
CryptX v3.5.2
4.2.1 4.2.0 4.1.1 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.9 2.0 2.1 2.2 2.3 2.3.1 2.3.2 2.3.3 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 All 93 releases
cryptx / classes / EmailProcessingConfig.php

EmailProcessingConfig.php in CryptX 3.5.2, at classes/EmailProcessingConfig.php

27 lines 499 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace CryptX;
4
5 final class EmailProcessingConfig {
6 public function __construct(
7 private readonly string $content,
8 private readonly bool $isShortcode = false,
9 private readonly ?int $postId = null
10 ) {}
11
12 public function getContent(): string
13 {
14 return $this->content;
15 }
16
17 public function isShortcode(): bool
18 {
19 return $this->isShortcode;
20 }
21
22 public function getPostId(): ?int
23 {
24 return $this->postId;
25 }
26 }
27