for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PeacefulBit\Slate\Parser\Tokens;
class IdentifierToken extends Token
{
/**
* @param mixed $value
*/
public function __construct($value)
parent::__construct('id', $value);
}