Skip to content

Commit

Permalink
csfixer
Browse files Browse the repository at this point in the history
  • Loading branch information
mathielen committed Feb 26, 2025
1 parent 6b3beb1 commit e2200ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/CXml/Model/ConfirmationItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace CXml\Model;

use CXml\Model\Request\ConfirmationHeader;
use JMS\Serializer\Annotation as Serializer;

#[Serializer\AccessorOrder(order: 'custom', custom: ['quantity', 'lineNumber', 'unitOfMeasure', 'confirmationStatus'])]
Expand Down
4 changes: 2 additions & 2 deletions src/CXml/Model/InventoryQuantity.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@

readonly class InventoryQuantity
{

public function __construct(
#[Serializer\XmlAttribute]
public int $quantity,
#[Serializer\SerializedName('UnitOfMeasure')]
#[Serializer\XmlElement(cdata: false)]
public string $unitOfMeasure,
) { }
) {
}
}

0 comments on commit e2200ea

Please sign in to comment.