public function __construct(PHPClient $origin)
 {
     parent::__construct($origin);
     $this->types = new PlatformTypesHandler($origin);
     $this->devices = new PlatformDevicesHandler($origin);
     $this->os = new PlatformOSHandler($origin);
     $this->browsers = new PlatformBrowsersHandler($origin);
 }
 public function __construct($origin, $project_id)
 {
     parent::__construct($origin);
     $this->project_id = $project_id;
 }
 public function __construct($origin, $bug_id)
 {
     parent::__construct($origin);
     $this->bug_id = $bug_id;
 }
 public function __construct($origin, $os_id)
 {
     parent::__construct($origin);
     $this->os_id = $os_id;
 }
Exemplo n.º 5
0
 public function __construct(PHPClient $origin)
 {
     parent::__construct($origin);
     $this->organizations = new UserOrganizationsHandler($origin);
 }
 public function __construct($origin, $type_id)
 {
     parent::__construct($origin);
     $this->type_id = $type_id;
 }