copy() public method

public copy ( call $call )
$call call
Beispiel #1
0
 public function setCall(test\adapter\call $call = null)
 {
     if ($call === null) {
         $call = new test\adapter\call();
     }
     if ($this->call !== null) {
         $call->copy($this->call);
     }
     $this->call = $call;
     return $this;
 }