/** * Returns an instance of Ht_Utils_FileSystem * * Singleton pattern implementation * * @return Ht_Utils_FileSystem Provides a fluent interface */ public static function getInstance() { if (null === self::$_instance) { self::$_instance = new self(); } return self::$_instance; }