/var/www/vhosts/nabawater/vendor/fzaninotto/faker/src/Faker/Provider/en_SG
Edit: /var/www/vhosts/nabawater/vendor/fzaninotto/faker/src/Faker/Provider/en_SG/PhoneNumber.php (2959B)
generator->parse($format));
}
public function fixedLineNumber()
{
$format = static::randomElement(static::$fixedLineNumberFormats);
return static::numerify($this->generator->parse($format));
}
public function voipNumber()
{
$format = static::randomElement(static::$voipNumber);
return $this->generator->parse($format);
}
public function internationalCodePrefix()
{
$format = static::randomElement(static::$internationalCodePrefix);
return $this->generator->parse($format);
}
public function zeroToEight()
{
return static::randomElement(static::$zeroToEight);
}
public function oneToNine()
{
return static::randomElement(static::$oneToNine);
}
}