Automattic\WooCommerce\Vendor\Sabberworm\CSS\CSSList
CSSList::append
Appends an item to the list of contents.
Method of the class: CSSList{}
No Hooks.
Returns
null. Nothing (null).
Usage
$CSSList = new CSSList(); $CSSList->append( $oItem );
CSSList::append() CSSList::append code WC 10.5.0
public function append($oItem)
{
$this->aContents[] = $oItem;
}