Skip to content

Commit

Permalink
ge-2152 fix current sim package request
Browse files Browse the repository at this point in the history
  • Loading branch information
salihbasak committed Jul 1, 2024
1 parent 412227f commit dd9033a
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions src/Dto/Request/CurrentSimPackageRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ class CurrentSimPackageRequest extends BaseRequest
*/
private string $trackingNumber;

/**
* @var array|null
* @example ['customParameter1' => 'customValue1', 'customParameter2' => 'customValue2']
*/
private ?array $customParams;

public static function builder(): static
{
return new static();
Expand All @@ -40,22 +34,4 @@ public function setTrackingNumber(string $trackingNumber): CurrentSimPackageRequ
$this->trackingNumber = $trackingNumber;
return $this;
}

/**
* @return array|null
*/
public function getCustomParams(): ?array
{
return $this->customParams;
}

/**
* @param array|null $customParams
* @return CurrentSimPackageRequest
*/
public function setCustomParams(?array $customParams): CurrentSimPackageRequest
{
$this->customParams = $customParams;
return $this;
}
}

0 comments on commit dd9033a

Please sign in to comment.