for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Remorhaz\UniLex\AST;
use Remorhaz\UniLex\Stack\StackableSymbolInterface;
class EopSymbol implements StackableSymbolInterface
{
private $node;
public function __construct(Node $node)
$this->node = $node;
}
public function getNode(): Node
return $this->node;