Skip to content

Commit

Permalink
Update Laravel Pint
Browse files Browse the repository at this point in the history
  • Loading branch information
sunaoka committed Aug 6, 2024
1 parent a36ca9e commit 96fe7b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"paypayopa/php-sdk": "^2.0"
},
"require-dev": {
"laravel/pint": "^1.16",
"laravel/pint": "^1.17.0",
"orchestra/testbench": "^8.23 || ^9.0",
"phpstan/phpstan": "^1.11"
},
Expand Down
2 changes: 1 addition & 1 deletion tests/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public function test_fake_successful(): void
new Response(201, body: json_encode($fakeResponse, JSON_THROW_ON_ERROR)),
]);

$payload = new CreateQrCodePayload();
$payload = new CreateQrCodePayload;
$payload->setMerchantPaymentId('merchant_id');
$payload->setCodeType('ORDER_QR');

Expand Down
2 changes: 1 addition & 1 deletion tests/FacadeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function test_fake_successful(): void
new Response(201, body: json_encode($fakeResponse, JSON_THROW_ON_ERROR)),
]);

$payload = new CreateQrCodePayload();
$payload = new CreateQrCodePayload;
$payload->setMerchantPaymentId('merchant_id');
$payload->setCodeType('ORDER_QR');

Expand Down

0 comments on commit 96fe7b6

Please sign in to comment.