예제 #1
0
 public function __construct($key = null, $format = 'json', $version = '3.0')
 {
     $this->key = $key;
     $this->format = $format;
     $this->version = $version;
     parent::__construct($this);
 }
 public function __construct($key = null, $format = 'json', $version = '3.0', $is_secure = false)
 {
     $this->key = $key;
     $this->format = $format;
     $this->version = $version;
     $this->is_secure = $is_secure;
     parent::__construct($this);
 }
예제 #3
0
 public function __construct($format = 'json', $version = '3.0')
 {
     $this->key = \Config::get('disqus::key');
     $this->format = $format;
     $this->version = $version;
     parent::__construct($this);
 }