/** * Performer constructor. * @param PerformerDto $performerDto */ public function __construct(PerformerDto $performerDto = null) { //legacy if ($performerDto) { parent::__construct($performerDto); } $this->performerEarlyTerminated = new PerformerEarlyTerminated(); return null; }
public function __construct(TerminatorPauseStanderDto $pauseStanderDto) { parent::__construct($pauseStanderDto); $this->pid = getmypid(); return null; }