コード例 #1
0
 /**
  * @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;
 }
コード例 #2
0
ファイル: HashSet.php プロジェクト: robo47/BlazeFramework
 public function remove()
 {
     $this->set->remove($this->current());
 }
コード例 #3
0
ファイル: HashMap.php プロジェクト: robo47/BlazeFramework
 public function remove()
 {
     $this->map->remove($this->getKey());
 }