Exemplo n.º 1
0
 /**
  * Singleton instance
  *
  * @param array $config
  * @return Url
  */
 public static function getInstance($config = array())
 {
     if (null === self::$_instance) {
         self::$_instance = new self($config);
     }
     return self::$_instance;
 }