Skip to content

Commit

Permalink
Forgot login() in example
Browse files Browse the repository at this point in the history
  • Loading branch information
tkrajina committed Aug 21, 2012
1 parent 1c82830 commit f3117da
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions examples/check_account_balance.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
$customerProfileClient = new CustomerProfileClient(USERNAME, PASSWORD);
$customerProfileClient->login();

$customerProfileClient->login();

$accountBalance = $customerProfileClient->getAccountBalance();

if(!$accountBalance->isSuccess()) {
Expand Down
1 change: 0 additions & 1 deletion examples/send_message_and_wait_to_delivery_push.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
require_once 'oneapi/client.php';

$smsClient = new SmsClient(USERNAME, PASSWORD);

$smsClient->login();

# example:prepare-message-with-notify-url
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
require_once 'oneapi/client.php';

$smsClient = new SmsClient(USERNAME, PASSWORD);
$smsClient->login();

// Keyword to be used for MO messages:
$criteria = 'test' . rand(10000000, 100000000);
Expand Down

0 comments on commit f3117da

Please sign in to comment.