Skip to content
Snippets Groups Projects

Devel

Merged Piotr Potrebka requested to merge devel into main
1 file
+ 21
0
Compare changes
  • Side-by-side
  • Inline
+ 21
0
@@ -6,6 +6,11 @@ use Exception;
abstract class EmailAbstract implements EmailInterface {
/**
* @var bool
*/
private $is_enable;
/**
* @var array
*/
@@ -53,6 +58,22 @@ abstract class EmailAbstract implements EmailInterface {
*/
abstract public function get_id(): string;
/**
* @return bool
*/
public function get_is_enable(): bool {
return $this->is_enable;
}
/**
* @return bool
*/
public function set_is_enable( $enable ): self {
$this->is_enable = $enable;
return $this;
}
/**
* Set placeholders.
*
Loading