コード例 #1
0
ファイル: PlaceTest.php プロジェクト: gusdecool/google-php
 /**
  * @param Place $place
  *
  * @depends testConstruct
  */
 public function testGetKey(Place $place)
 {
     $this->assertEquals(constant('API_KEY'), $place->getKey());
 }
コード例 #2
0
ファイル: Nearby.php プロジェクト: gusdecool/google-php
 /**
  * API Key
  * @return string
  */
 public function getKey()
 {
     return $this->parent->getKey();
 }