Skip to content

Add fecEntregaBienes property with getter/setter to Shipment class#21

Open
lecano wants to merge 1 commit into
thegreenter:masterfrom
lecano:master
Open

Add fecEntregaBienes property with getter/setter to Shipment class#21
lecano wants to merge 1 commit into
thegreenter:masterfrom
lecano:master

Conversation

@lecano
Copy link
Copy Markdown

@lecano lecano commented Jun 6, 2026

This pull request adds support for tracking the delivery date of goods to the carrier in the Shipment model. The main change is the introduction of a new property with its corresponding getter and setter methods.

Enhancements to the Shipment model:

  • Added a new property fecEntregaBienes to store the delivery date of goods to the carrier, including its PHPDoc annotation.
  • Implemented getFecEntregaBienes() and setFecEntregaBienes() methods to access and modify the new fecEntregaBienes property.
image

Copilot AI review requested due to automatic review settings June 6, 2026 16:32
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Note

Copilot was unable to run its full agentic suite in this review.

Adds support for capturing the date goods are delivered to the carrier on Shipment.

Changes:

  • Introduces a new fecEntregaBienes property on Shipment.
  • Adds getter/setter for fecEntregaBienes with nullable DateTime typing.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +361 to +374
/**
* @return DateTime
*/
public function getFecEntregaBienes(): ?DateTime
{
return $this->fecEntregaBienes;
}

/**
* @param DateTime $fecEntregaBienes
*
* @return Shipment
*/
public function setFecEntregaBienes(?DateTime $fecEntregaBienes): Shipment
Comment on lines +88 to +93
/**
* Fecha de entrega de bienes al transportista.
*
* @var DateTime
*/
private $fecEntregaBienes;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants