Skip to content

Commit 9a8fdc7

Browse files
committed
fix: Style fixes
1 parent 0a2560d commit 9a8fdc7

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/Model/PacketAttributes.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -376,12 +376,12 @@ public function setCustomerBarcode(?string $customerBarcode): void
376376
$this->customerBarcode = $customerBarcode;
377377
}
378378

379-
public function getSize() : ?Size
379+
public function getSize(): ?Size
380380
{
381381
return $this->size;
382382
}
383383

384-
public function setSize(?Size $size) : void
384+
public function setSize(?Size $size): void
385385
{
386386
$this->size = $size;
387387
}

src/Model/Size.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -20,32 +20,32 @@ public function __construct(
2020
$this->setHeight($height);
2121
}
2222

23-
public function getLength() : int
23+
public function getLength(): int
2424
{
2525
return $this->length;
2626
}
2727

28-
public function setLength(int $length) : void
28+
public function setLength(int $length): void
2929
{
3030
$this->length = $length;
3131
}
3232

33-
public function getWidth() : int
33+
public function getWidth(): int
3434
{
3535
return $this->width;
3636
}
3737

38-
public function setWidth(int $width) : void
38+
public function setWidth(int $width): void
3939
{
4040
$this->width = $width;
4141
}
4242

43-
public function getHeight() : int
43+
public function getHeight(): int
4444
{
4545
return $this->height;
4646
}
4747

48-
public function setHeight(int $height) : void
48+
public function setHeight(int $height): void
4949
{
5050
$this->height = $height;
5151
}

0 commit comments

Comments
 (0)