/
home
/
obinna
/
html
/
boaz2
/
vendor
/
mailgun
/
mailgun-php
/
src
/
Model
/
Domain
/
Upload File
HOME
<?php declare(strict_types=1); /* * Copyright (C) 2013 Mailgun * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file for details. */ namespace Mailgun\Model\Domain; /** * Represents a single Click Tracking setting for a domain tracking. * * @author Artem Bondarenko <artem@uartema.com> */ final class ClickTracking { private $active; public static function create(array $data): self { $active = $data['active'] ?? null; $model = new self(); $model->active = 'htmlonly' === $active ? $active : ($active ? 'yes' : 'no'); return $model; } private function __construct() { } public function getActive(): ?string { return $this->active; } public function isActive(): bool { return 'yes' === $this->getActive(); } public function isHtmlOnly(): bool { return 'htmlonly' === $this->getActive(); } }