Phrozn\Outputter\Console\Color::getInstance PHP 메소드

getInstance() 공개 정적인 메소드

Get singleton instance
public static getInstance ( ) : Color
리턴 Color
    public static function getInstance()
    {
        if (null === self::$instance) {
            self::$instance = new self();
        }
        return self::$instance;
    }