<?phpdeclare(strict_types=1);namespace App\Domain\Entity;use App\Domain\Entity\Behavior\Identifiable;/** * Class NotificationChannel * @package App\Domain\Entity */class NotificationChannel{ use Identifiable; public const CHANNEL_EMAIL = 'email'; public string $identifier; public bool $enabled; /** * @return string */ public function __toString(): string { return $this->identifier ?? ''; }}