nerezus
Вселенский отказник
Zend studio - автодополнение
Внутри класса Cache:
Как заставить Zend Studio(версия 5.5) показывать варианты после Cache::getInstance()-> ?
Внутри класса Cache:
PHP:
/**
* Returns Cache instance
*
* @return Cache
*/
public static function getInstance() {
if (self::$instance == null) {
self::$instance = new Cache();
}
return self::$instance;
}