20 lines
346 B
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;
|
|
}
|
|
}
|