for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thruster\Component\Tokenizer\Token\Character;
use Thruster\Component\Tokenizer\Token\CharacterToken;
/**
* Class SemiColonToken
*
* @package Thruster\Component\Tokenizer\Token\Character
* @author Aurimas Niekis <[email protected]>
*/
class SemiColonToken extends CharacterToken
{
const IDENTIFIER = T_SEMICOLON;
public function __construct(string $content = ';', int $line)
parent::__construct($this::IDENTIFIER, $content, $line);
}