summaryrefslogtreecommitdiffstats
path: root/php_http_client/config.php
diff options
context:
space:
mode:
authorElmer Thomas <elmer@thinkingserious.com>2016-03-19 21:23:33 -0700
committerElmer Thomas <elmer@thinkingserious.com>2016-03-19 21:23:33 -0700
commite5ab6e0e867f58452dbdd03ee0469c48c9c841fe (patch)
tree581f5c5b52645105218cee6fa5923cd88217c8a0 /php_http_client/config.php
parentaf6fd06aa21cebb7ac601abfc130db137bb705e5 (diff)
downloadphp-http-client-e5ab6e0e867f58452dbdd03ee0469c48c9c841fe.zip
php-http-client-e5ab6e0e867f58452dbdd03ee0469c48c9c841fe.tar.gz
php-http-client-e5ab6e0e867f58452dbdd03ee0469c48c9c841fe.tar.bz2
Add Tests
Diffstat (limited to 'php_http_client/config.php')
-rw-r--r--php_http_client/config.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/php_http_client/config.php b/php_http_client/config.php
deleted file mode 100644
index ba33bef..0000000
--- a/php_http_client/config.php
+++ /dev/null
@@ -1,11 +0,0 @@
-<?php
-class Config{
- function __construct($base_path, $config_filename){
- $handle = fopen($base_path.'/'.$config_filename, "r");
- while (($line = fgets($handle)) !== false) {
- putenv(trim(preg_replace('/\s+/', ' ', $line)));
- }
- fclose($handle);
- }
-}
-?>