for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Groundskeeper\Tokens;
use Groundskeeper\Configuration;
class Text extends AbstractValuedToken
{
public function getType()
return Token::TEXT;
}
/**
* Required by the Token interface.
*/
public function toHtml($prefix, $suffix)
return $prefix . $this->getValue() . $suffix;