Automattic\WooCommerce\Vendor\Sabberworm\CSS
OutputFormatter::spaceAfterListArgumentSeparator
Method of the class: OutputFormatter{}
No Hooks.
Returns
String.
Usage
$OutputFormatter = new OutputFormatter(); $OutputFormatter->spaceAfterListArgumentSeparator( $sSeparator );
- $sSeparator(string) (required)
- .
OutputFormatter::spaceAfterListArgumentSeparator() 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);
}