Exemplo n.º 1
0
 public function __construct($config = null)
 {
     if (!$config) {
         $config = TinyPass::config();
     }
     $this->config = $config;
 }
Exemplo n.º 2
0
 public function __construct($config = null)
 {
     $this->config = TinyPass::config();
     if ($config) {
         $this->config = $config;
     }
     $this->tokens = new TPAccessTokenList();
 }
Exemplo n.º 3
0
 function __construct(TPOffer $offer, array $options = null)
 {
     $this->config = TinyPass::config();
     $this->primaryOffer = $offer;
     if ($options == null) {
         $options = array();
     }
     $this->options = $options;
 }
Exemplo n.º 4
0
 function __construct()
 {
     $this->config = TinyPass::config();
 }