PhpCsFixer\AbstractFixer::getDefaultWhitespacesFixerConfig PHP 메소드

getDefaultWhitespacesFixerConfig() 개인적인 메소드

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