Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix PHP Warning #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "dpodium/yii2-nexmo",
"name": "baha2odeh/yii2-nexmo",
"description": "Yii2 nexmo is a wrapper for the Nexmo PHP library. Allow yii2 application to use nexmo services.",
"keywords": ["yii2", "nexmo", "sms"],
"type": "yii2-extension",
Expand Down Expand Up @@ -32,4 +32,4 @@
"Nexmo\\" : "src/"
}
}
}
}
4 changes: 2 additions & 2 deletions src/Message/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function send($message)
foreach($data['messages'] as $part){
switch($part['status']){
case '0':
continue; //all okay
continue 2; //all okay
case '1':
if(preg_match('#\[\s+(\d+)\s+\]#', $part['error-text'], $match)){
usleep($match[1] + 1);
Expand Down Expand Up @@ -202,4 +202,4 @@ public function __call($name, $arguments)

return $this->send($message);
}
}
}