yii\mongodb\file\Cursor::__get PHP Method

__get() public method

It returns value from the inner iterator.
public __get ( string $name ) : mixed
$name string field name.
return mixed field value.
    public function __get($name)
    {
        return $this->getInnerIterator()->{$name};
    }