Automattic\WooCommerce\Vendor\Sabberworm\CSS\CSSList

CSSList::prependpublicWC 1.0

Prepends an item to the list of contents.

Method of the class: CSSList{}

No Hooks.

Returns

null. Nothing (null).

Usage

$CSSList = new CSSList();
$CSSList->prepend( $oItem );
$oItem(RuleSet|CSSList|Import|Charset) (required)
.

CSSList::prepend() code WC 10.5.0

public function prepend($oItem)
{
    array_unshift($this->aContents, $oItem);
}