Faker\Provider\fr_FR\PhoneNumber::phoneNumber07WithSeparator PHP Method

phoneNumber07WithSeparator() public method

Only 073 to 079 are acceptable prefixes with 07
See also: http://www.arcep.fr/index.php?id=8146
    public function phoneNumber07WithSeparator()
    {
        $phoneNumber = $this->generator->numberBetween(3, 9);
        $phoneNumber .= $this->numerify('# ## ## ##');
        return $phoneNumber;
    }