summaryrefslogtreecommitdiffstats
path: root/class
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2010-07-11 19:10:36 +0200
committerRemi Collet <fedora@famillecollet.com>2010-07-11 19:10:36 +0200
commit6e6d59bf0677c6b2d5b92a6abdab15a7ecaf9947 (patch)
tree146b7d1c713d9dbfdcfeaa98358a47cb0b99b775 /class
parenta5fdd45528a85457821ef4739efcd3fc778affde (diff)
move FEDORACLIENT_VERSION to class, so FedoraClient::VERSION
Diffstat (limited to 'class')
-rw-r--r--class/FedoraClient.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/class/FedoraClient.php b/class/FedoraClient.php
index c1a10c5..f1ce8f6 100644
--- a/class/FedoraClient.php
+++ b/class/FedoraClient.php
@@ -35,8 +35,6 @@
* @since The begining of times.
*/
-define('FEDORACLIENT_VERSION', '0.1.0-dev');
-
if (!function_exists('curl_version')) {
die("curl extension required\n");
}
@@ -44,6 +42,7 @@ require_once 'Cache/Lite.php';
abstract class FedoraClient
{
+ const VERSION='0.1.0-dev';
protected $url;
private $agent;
private $debug = 0;
@@ -65,7 +64,7 @@ abstract class FedoraClient
if (isset($options['agent']) && !empty($options['agent'])) {
$this->agent = $options['agent'];
} else {
- $this->agent = 'Fedora PHPClient/'.FEDORACLIENT_VERSION;
+ $this->agent = 'Fedora PHPClient/'.self::VERSION;
}
if (isset($options['debug']) && intval($options['debug'])>0) {
$this->debug = intval($options['debug']);