getAvailableServices() 공개 정적인 메소드

Gets a list of available services
public static getAvailableServices ( ) : array
리턴 array Returns the list of available services looks like array(serviceName => className)
예제 #1
0
 /**
  * @test
  */
 public function testGetAvailableServices()
 {
     $avail = OpenStack::getAvailableServices();
     $this->assertNotEmpty($avail);
     $this->assertInternalType('array', $avail);
     $this->assertArrayHasKey('servers', $avail);
     $this->assertArrayNotHasKey('abstract', $avail);
 }