PhpCsFixer\AbstractFixer::getDefaultWhitespacesFixerConfig PHP Method

getDefaultWhitespacesFixerConfig() private method

    private function getDefaultWhitespacesFixerConfig()
    {
        static $defaultWhitespacesFixerConfig = null;
        if (null === $defaultWhitespacesFixerConfig) {
            $defaultWhitespacesFixerConfig = new WhitespacesFixerConfig('    ', "\n");
        }
        return $defaultWhitespacesFixerConfig;
    }