for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ajax\semantic\html\base;
use Ajax\common\html\HtmlSingleElement;
use Ajax\semantic\html\base\traits\BaseTrait;
/**
* Base class for Semantic single elements
* @author jc
* @version 1.001
*/
class HtmlSemSingleElement extends HtmlSingleElement {
use BaseTrait;
public function __construct($identifier, $tagName="br",$baseClass="ui") {
parent::__construct($identifier, $tagName);
$this->_baseClass=$baseClass;
$this->setClass($baseClass);
}
* {@inheritDoc}
* @see \Ajax\semantic\html\base\traits\BaseTrait::addContent()
public function addContent($content, $before=false) {}
$content
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$before
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.