summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Duedal <hd@onlinecity.dk>2011-05-05 20:01:25 +0200
committerHans Duedal <hd@onlinecity.dk>2011-05-05 20:01:25 +0200
commit5c3adb4196c8176ac0d328396f6b072fe78f0d8b (patch)
tree309775f24c7c69a68b717e4a331018158ec51ea2
parent9660abc4c6ab2e4d709edd3c2a90631f9f2a0b37 (diff)
downloadphp-smpp-5c3adb4196c8176ac0d328396f6b072fe78f0d8b.zip
php-smpp-5c3adb4196c8176ac0d328396f6b072fe78f0d8b.tar.gz
php-smpp-5c3adb4196c8176ac0d328396f6b072fe78f0d8b.tar.bz2
Fixed typo from namespace removal
-rw-r--r--protocol/smppclient.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocol/smppclient.class.php b/protocol/smppclient.class.php
index f88cc19..f88cb23 100644
--- a/protocol/smppclient.class.php
+++ b/protocol/smppclient.class.php
@@ -981,7 +981,7 @@ class SmppSms extends SmppPdu
* @param integer $smDefaultMsgId (optional)
* @param integer $replaceIfPresentFlag (optional)
*/
- public function __construct($id, $status, $sequence, $body, $service_type, Address $source, Address $destination,
+ public function __construct($id, $status, $sequence, $body, $service_type, SmppAddress $source, SmppAddress $destination,
$esmClass, $protocolId, $priorityFlag, $registeredDelivery, $dataCoding, $message, $tags,
$scheduleDeliveryTime=null, $validityPeriod=null, $smDefaultMsgId=null, $replaceIfPresentFlag=null)
{