for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Groundskeeper\Tokens\Elements;
use Groundskeeper\Tokens\Element;
/**
* "colgroup" element
*
* https://html.spec.whatwg.org/multipage/semantics.html#the-colgroup-element
*/
class Colgroup extends Element
{
protected function getAllowedAttributes()
$colgroupAllowedAttributes = array(
'/^span$/i' => Element::ATTR_INT,
);
return array_merge(
$colgroupAllowedAttributes,
parent::getAllowedAttributes()
}