コード例 #1
0
ファイル: Entity.php プロジェクト: guancio/Runalyze
 /**
  * Get value for this key
  * @param string $key
  * @return mixed
  */
 public function get($key)
 {
     if ($key == self::TEMPERATURE) {
         return $this->Data[self::TEMPERATURE];
     }
     return parent::get($key);
 }