for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Groundskeeper\Tokens\Elements;
use Groundskeeper\Configuration;
use Groundskeeper\Tokens\Token;
class ClosedElement extends Element
{
/**
* Reimplement addChild so that no children can be added.
*/
public function addChild(Token $token)
return $this;
}
protected function buildHtml($prefix, $suffix)
return $this->buildStartTag($prefix, $suffix);