Automattic\WooCommerce\Vendor\Sabberworm\CSS\CSSList
CSSList::prepend
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 );
CSSList::prepend() CSSList::prepend code WC 10.5.0
public function prepend($oItem)
{
array_unshift($this->aContents, $oItem);
}