/**
  * 
  */
 function __construct()
 {
     parent::__construct();
 }
Exemplo n.º 2
0
 /**
  * @param $id
  * @param $url
  */
 function __construct($id, $url)
 {
     parent::__construct();
     $this->id = $id;
     $this->url = $url;
 }
Exemplo n.º 3
0
 /**
  * 
  * @param type $responseCode
  */
 protected function __construct($responseCode)
 {
     parent::__construct();
     $this->responseCode = $responseCode;
 }
Exemplo n.º 4
0
 /**
  * 
  * @param object $responsePayload
  */
 function __construct($responsePayload)
 {
     parent::__construct();
     $this->responsePayload = $responsePayload;
 }