PHP code example of samuelmwangiw / africastalking-laravel-tests

1. Go to this page and download the library: Download samuelmwangiw/africastalking-laravel-tests 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/ */

    

samuelmwangiw / africastalking-laravel-tests example snippets


use SamuelMwangiW\Africastalking\Facades\Africastalking;

it('sends a welcome sms', function () {
    Africastalking::fake();

    Africastalking::sms('Welcome!')->to('+254700000000')->send();

    Africastalking::fake()->assertSmsSentTo('+254700000000');
});

Africastalking::fake();

Africastalking::sms('Welcome!')->to('+254700000000')->send();

Africastalking::assertSmsSentTo('+254700000000');