/**
...
* @property string $inn
* @property string $snils
*/
class User extends ActiveRecord
{
...
public function getInn()
{
return $this->profile->inn;
}
public function getSnils ()
{
return $this->profile->snils ;
}
...
}