whoami7 - Manager
:
/
home
/
techyfnq
/
public_html
/
wp-content
/
plugins
/
mailpoet
/
lib
/
Mailer
/
Upload File:
files >> //home/techyfnq/public_html/wp-content/plugins/mailpoet/lib/Mailer/SubscriberError.php
<?php namespace MailPoet\Mailer; if (!defined('ABSPATH')) exit; class SubscriberError { /** @var string */ private $email; /** @var string|null */ private $message; /** * @param string $email * @param string $message|null */ public function __construct( $email, $message = null ) { $this->email = $email; $this->message = $message; } /** * @return string */ public function getEmail() { return $this->email; } /** * @return null|string */ public function getMessage() { return $this->message; } public function __toString() { return $this->message ? $this->email . ': ' . $this->message : $this->email; } }
Copyright ©2021 || Defacer Indonesia