예제 #1
0
파일: Generic.php 프로젝트: dafik/dfi
 public function __construct($config, $name, $catMetric = null)
 {
     parent::__construct();
     $this->filename = $config;
     $this->category = $name;
     if (null !== $catMetric) {
         $this->cat_metric = $catMetric;
     }
 }
예제 #2
0
파일: Dialplan.php 프로젝트: dafik/dfi
 public function __construct($name)
 {
     parent::__construct();
     $this->filename = self::FILE_NAME;
     $this->category = $name;
 }