order = $deliveredOrder; $this->admin = $manager; $this->quantity = $quantity; } /** * @return User */ public function getAdmin() { return $this->admin; } /** * @return Order */ public function getOrder() { return $this->order; } /** * @return int */ public function getQuantity() { return $this->quantity; } }