summaryrefslogtreecommitdiffstats
path: root/lib/config.php
blob: 26087003740cc3c1ed56862a8278bd10d45da5d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
namespace SendGrid;
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);
  }
}
?>