예제 #1
0
파일: Contains.php 프로젝트: mlntn/fpl-api
 public function __construct($key, array $values = [])
 {
     parent::__construct($key);
     $this->values = $values;
 }
예제 #2
0
파일: Between.php 프로젝트: mlntn/fpl-api
 public function __construct($key, $min, $max)
 {
     parent::__construct($key);
     $this->min = $min;
     $this->max = $max;
 }