Faker\UniqueGenerator::__get PHP Method

__get() public method

Catch and proxy all generator calls but return only unique values
public __get ( string $attribute ) : mixed
$attribute string
return mixed
    public function __get($attribute)
    {
        return $this->__call($attribute, array());
    }