MyDSL/src/Token/TokenComment.php

17 lines
237 B
PHP

<?php
/**
* @filename TokenComment.php
* @author Jerry Yan <792602257@qq.com>
* @date 2021/1/26 13:43
*/
namespace JerryYan\DSL\Token;
class TokenComment extends TokenInterface
{
public static $alias = [
'//'
];
}