File: TokenType.php

package info (click to toggle)
php-doctrine-lexer 3.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 240 kB
  • sloc: php: 485; xml: 66; makefile: 18
file content (12 lines) | stat: -rw-r--r-- 142 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

declare(strict_types=1);

namespace Doctrine\Tests\Common\Lexer;

enum TokenType
{
    case INT;
    case OPERATOR;
    case STRING;
}