Skip to content

Commit

Permalink
bump version to 2.0.0-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSDavidSoft committed Nov 8, 2023
1 parent b4587f9 commit e889493
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "kavenegar/php",
"type": "library",
"description": "A PHP wrapper for Kavenegar's API",
"version": "2.0.0-dev",
"keywords": ["kavenegar", "sms", "api"],
"homepage": "http://github.com/Kavenegar/kavenegar-php",
"license": "MIT",
Expand Down
4 changes: 1 addition & 3 deletions src/KavenegarApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
class KavenegarApi
{
const APIPATH = "%s://api.kavenegar.com/v1/%s/%s/%s.json/";
const VERSION = "1.2.2";
const VERSION = "2.0.0";
private $apiKey = "";
private $insecure = false;
public function __construct($apiKey, $insecure=false)
Expand Down Expand Up @@ -189,7 +189,6 @@ public function Cancel($messageid)
"messageid" => is_array($messageid) ? implode(",", $messageid) : $messageid
);
return $this->execute($path,$params);

}

public function Receive($linenumber, $isread = 0)
Expand Down Expand Up @@ -294,4 +293,3 @@ public function CallMakeTTS($receptor, $message, $date = null, $localid = null)
return $this->execute($path, $params);
}
}
?>

0 comments on commit e889493

Please sign in to comment.