Skip to content

Commit

Permalink
fix: Style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Salamek committed Aug 20, 2024
1 parent 0a2560d commit 9a8fdc7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/Model/PacketAttributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -376,12 +376,12 @@ public function setCustomerBarcode(?string $customerBarcode): void
$this->customerBarcode = $customerBarcode;
}

public function getSize() : ?Size
public function getSize(): ?Size
{
return $this->size;
}

public function setSize(?Size $size) : void
public function setSize(?Size $size): void
{
$this->size = $size;
}
Expand Down
12 changes: 6 additions & 6 deletions src/Model/Size.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,32 +20,32 @@ public function __construct(
$this->setHeight($height);
}

public function getLength() : int
public function getLength(): int
{
return $this->length;
}

public function setLength(int $length) : void
public function setLength(int $length): void
{
$this->length = $length;
}

public function getWidth() : int
public function getWidth(): int
{
return $this->width;
}

public function setWidth(int $width) : void
public function setWidth(int $width): void
{
$this->width = $width;
}

public function getHeight() : int
public function getHeight(): int
{
return $this->height;
}

public function setHeight(int $height) : void
public function setHeight(int $height): void
{
$this->height = $height;
}
Expand Down

0 comments on commit 9a8fdc7

Please sign in to comment.