Skip to content

Commit

Permalink
Update default values for allowFirstServicePaymentDelay and allowServ…
Browse files Browse the repository at this point in the history
…iceRegItems in GeneralSettingsRequest constructor
  • Loading branch information
Michel Escalante Álvarez authored and m1k3lm committed Jun 12, 2024
1 parent 2d0854c commit c3fb789
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ class GeneralSettingsRequest extends Request
* @param string[]|null $excludedProducts
* @param string[]|null $excludedCategories
* @param bool $enabledForServices Default value is false
* @param bool $allowFirstServicePaymentDelay Default value is true
* @param bool $allowServiceRegItems Default value is true
* @param bool $allowFirstServicePaymentDelay Default value is false
* @param bool $allowServiceRegItems Default value is false
* @param string $defaultServicesEndDate Default value is 'P1Y'
*/
public function __construct(
Expand All @@ -75,8 +75,8 @@ public function __construct(
?array $excludedProducts,
?array $excludedCategories,
bool $enabledForServices = false,
bool $allowFirstServicePaymentDelay = true,
bool $allowServiceRegItems = true,
bool $allowFirstServicePaymentDelay = false,
bool $allowServiceRegItems = false,
string $defaultServicesEndDate = 'P1Y'
) {
$this->sendOrderReportsPeriodicallyToSeQura = $sendOrderReportsPeriodicallyToSeQura;
Expand Down

0 comments on commit c3fb789

Please sign in to comment.