/** * @return array Returns a list of applications which are available on this server */ public static function getRunningApplications() { $apps = array(); foreach (self::$serverConfig->get('applications') as $app) { if ($app->getRunning() === true) { $app->initApplication(); $apps[] = $app; } } return $apps; }
public function remove() { $this->set->remove($this->current()); }
public function remove() { $this->map->remove($this->getKey()); }