JoliTypo\Fixer\NoSpaceBeforeComma::fix PHP Method

fix() public method

public fix ( $content, StateBag $stateBag = null )
$stateBag JoliTypo\StateBag
    public function fix($content, StateBag $stateBag = null)
    {
        $content = preg_replace('@([^\\d\\s]+)[' . Fixer::ALL_SPACES . ']*(,)[' . Fixer::ALL_SPACES . ']*@mu', '$1$2 ', $content);
        return $content;
    }
NoSpaceBeforeComma