Automattic\WooCommerce\Vendor\Sabberworm\CSS\CSSList

CSSList::appendpublicWC 1.0

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 );
$oItem(RuleSet|CSSList|Import|Charset) (required)
.

CSSList::append() code WC 10.5.0

public function append($oItem)
{
    $this->aContents[] = $oItem;
}