php-kilo/src/Highlight.php

10 lines
171 B
PHP
Raw Normal View History

2019-10-24 16:57:27 -04:00
<?php declare(strict_types=1);
namespace Kilo;
class Highlight {
public const NORMAL = 0;
2019-10-25 11:49:04 -04:00
public const STRING = 1;
public const NUMBER = 2;
public const MATCH = 3;
2019-10-24 16:57:27 -04:00
}