Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Jagdish-J-P committed Feb 4, 2023
2 parents 90709b1 + ebde28c commit 8b19dda
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ composer require jagdish-j-p/smpp-php
```php
use JagdishJP\SmppPhp\Smpp;

$smpp = new \JagdishJP\SmppPhp\Smpp('localhost',2775, true, true);
$smpp = new Smpp('localhost',2775, true, true);
$smpp->bindTransmitter('SENDERID', 'USERNAME', 'PASSWORD');

$response = $smpp->sendSms('recepient number', 'Message');
Expand All @@ -28,7 +28,7 @@ composer require jagdish-j-p/smpp-php
```php
use JagdishJP\SmppPhp\Smpp;

$smpp = new \JagdishJP\SmppPhp\Smpp('localhost',2775, true, true);
$smpp = new Smpp('localhost',2775, true, true);
$smpp->bindReceiver('SENDERID', 'USERNAME', 'PASSWORD');

$message = $smpp->readSms();
Expand All @@ -40,7 +40,7 @@ composer require jagdish-j-p/smpp-php
```php
use JagdishJP\SmppPhp\Smpp;

$smpp = new \JagdishJP\SmppPhp\Smpp('localhost',2775, true, true);
$smpp = new Smpp('localhost',2775, true, true);
$smpp->bindTransreceiver('SENDERID', 'USERNAME', 'PASSWORD');

$response = $smpp->sendSms('recepient number', 'Message');
Expand Down

0 comments on commit 8b19dda

Please sign in to comment.