예제 #1
0
파일: Estate.php 프로젝트: samlx/Bulk
 /**
  * Get the title of Street where Estate is placed
  *
  * @return string
  */
 public function getStreetName()
 {
     /** @var Street $model */
     $model = Street::findOne(['id' => $this->getStreetId()]);
     return $model->title;
 }