all() 공개 정적인 메소드

Get an array of all supported currencies
public static all ( ) : array
리턴 array
예제 #1
0
 public function testAll()
 {
     $currencies = Currency::all();
     $this->assertTrue(isset($currencies['USD']));
     $this->assertFalse(isset($currencies['XYZ']));
 }