t-regx/T-Regx

View on GitHub
src/CleanRegex/Internal/Model/Entry.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace TRegx\CleanRegex\Internal\Model;

interface Entry
{
    public function text(): string;

    public function byteOffset(): int;
}