JoliTypo\Fixer\Dimension::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+["\']?)(' . Fixer::ALL_SPACES . ')?x(' . Fixer::ALL_SPACES . ')?(?=\\d)@', '$1$2' . Fixer::TIMES . '$2', $content);
        return $content;
    }
Dimension