/
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 Open Tracking setting for a domain tracking. * * @author Artem Bondarenko <artem@uartema.com> */ final class OpenTracking { private $active; public static function create(array $data): self { $active = $data['active'] ?? null; $model = new self(); $model->active = $active ? 'yes' : 'no'; return $model; } private function __construct() { } /** * @return string */ public function getActive(): ?string { return $this->active; } public function isActive(): bool { return 'yes' === $this->getActive(); } }