/**
* Execute the experiment within the laboratory.
*
* @return mixed
*/
public function run()
{
$this->params = func_get_args();
if ($this->laboratory) {
return $this->laboratory->runExperiment($this);
}
return call_user_func($this->control, $this->params);
}