__get() 공개 메소드

Return an object property or a field of the current row
public __get ( string $strKey ) : mixed | null
$strKey string The field name
리턴 mixed | null The field value or null
 /**
  * {@inheritDoc}
  */
 public function __get($strKey)
 {
     return $this->result->__get($strKey);
 }