PHP code example of jorgeanzola / phone-number-verification
1. Go to this page and download the library: Download jorgeanzola/phone-number-verification library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jorgeanzola / phone-number-verification example snippets
...
use JorgeAnzola\PhoneNumberVerification\Traits\MustVerifyPhoneNumber;
use JorgeAnzola\PhoneNumberVerification\Contracts\MustVerifyPhoneNumber as IMustVerifyPhoneNumber;
...
class User implements IMustVerifyPhoneNumber
{
...
use MustVerifyPhoneNumber;
...
public function sendVerificationToken(string $phoneNumber): bool;
public function verifyToken(MustVerifyPhoneNumber $user, string $verificationToken): bool;
public function markPhoneNumberAsVerified(MustVerifyPhoneNumber $user): bool;