feca-mailshots-plugin/feca_mailshots_plugin/src/Domain/DslToken.php

20 lines
346 B
PHP

<?php
declare(strict_types=1);
namespace FecaMailshots\Domain;
final class DslToken
{
public string $type;
public string $value;
public int $offset;
public function __construct(string $type, string $value, int $offset)
{
$this->type = $type;
$this->value = $value;
$this->offset = $offset;
}
}