Done some more testing

This commit is contained in:
Jack-Benny Persson 2014-07-26 22:07:29 +02:00
parent aa70a9583a
commit 5de6e1cabf

View File

@ -1,5 +1,5 @@
<?php
class CellSynt
class Cellsynt
{
public $username;
public $password;
@ -25,7 +25,7 @@ class CellSynt
}
}
$SMS = new CellSynt("jake", "testpw", "numeric", "123456666");
print $SMS->sendMsg("Detta är mitt SMS!") . "\n";
$MySMS = new Cellsynt("jake", "testpw", "numeric", "123456666");
print $MySMS->sendMsg("Detta är mitt SMS!") . "\n";
?>