deliveryExecution = $deliveryExecution; $this->proctor = $proctor; $this->reason = $reason; $this->seconds = $seconds; } /** * @return string */ public function getName(): string { return __CLASS__; } /** * Returns the delivery execution * * @return DeliveryExecution */ public function getDeliveryExecution(): DeliveryExecution { return $this->deliveryExecution; } /** * Returns the reason * * @return mixed */ public function getReason() { return $this->reason; } /** * Returns the proctor */ public function getProctor(): User { return $this->proctor; } public function getSeconds(): int { return $this->seconds; } }