Ejemplo n.º 1
0
 /**
  * @param null $returnValue
  * @param null $returnType
  * @param null $callId
  */
 public function __construct($returnValue = null, $returnType = null, $callId = null)
 {
     $this->returnType = $returnType;
     $this->returnValue = $returnValue;
     parent::__construct($callId);
 }
Ejemplo n.º 2
0
 /**
  * @param \Exception $exception
  * @param null       $callId
  */
 public function __construct(\Exception $exception, $callId = null)
 {
     $this->exception = $exception;
     parent::__construct($callId);
 }