Automattic\WooCommerce\Vendor\Sabberworm\CSS

OutputFormatter::spaceAfterListArgumentSeparatorpublicWC 1.0

Method of the class: OutputFormatter{}

No Hooks.

Returns

String.

Usage

$OutputFormatter = new OutputFormatter();
$OutputFormatter->spaceAfterListArgumentSeparator( $sSeparator );
$sSeparator(string) (required)
.

OutputFormatter::spaceAfterListArgumentSeparator() code WC 10.4.3

public function spaceAfterListArgumentSeparator($sSeparator)
{
    $spaceForSeparator = $this->oFormat->getSpaceAfterListArgumentSeparators();
    if (isset($spaceForSeparator[$sSeparator])) {
        return $spaceForSeparator[$sSeparator];
    }

    return $this->space('AfterListArgumentSeparator', $sSeparator);
}