Skip to content

Commit 4c62034

Browse files
committed
(CC-177) Adjust wording in phpDoc.
- run cs-fixer.
1 parent 19fe4ea commit 4c62034

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

src/Traits/HasRecurrenceType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function getRecurrenceType(): ?string
4444
}
4545

4646
/**
47-
* @param string $recurrenceType Recurrence type used for recurring payment.
47+
* @param string $recurrenceType Recurrence type used for recurring payment.
4848
*
4949
* @return $this
5050
*/

test/integration/PaymentTypes/CardTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,10 @@ public function cardTransactionAcceptsExemptionType(): void
294294
* Verify card transaction returns Liability Shift Indicator.
295295
*
296296
* @test
297+
*
297298
* @dataProvider cardTransactionReturnsLiabilityIndicatorDP()
299+
*
300+
* @param mixed $pan
298301
*/
299302
public function cardTransactionReturnsLiabilityIndicator($pan): void
300303
{

test/unit/Resources/TransactionTypes/ChargeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function gettersAndSettersShouldWorkProperly(): void
7878
}
7979

8080
/**
81-
* Setting recurrence type without a payment type does not raise exception anymore.
81+
* Setting recurrence type without a payment type does not raise exception.
8282
*
8383
* @test
8484
*/

test/unit/Traits/HasRecurrenceTypeTest.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,9 @@
2424
*/
2525
namespace UnzerSDK\test\unit\Traits;
2626

27-
use RuntimeException;
2827
use UnzerSDK\Constants\RecurrenceTypes;
2928
use UnzerSDK\Resources\Payment;
30-
use UnzerSDK\Resources\PaymentTypes\BasePaymentType;
3129
use UnzerSDK\Resources\PaymentTypes\Card;
32-
use UnzerSDK\Resources\PaymentTypes\Paypal;
33-
use UnzerSDK\Resources\PaymentTypes\SepaDirectDebit;
34-
use UnzerSDK\Resources\PaymentTypes\Sofort;
3530
use UnzerSDK\Resources\Recurring;
3631
use UnzerSDK\Resources\TransactionTypes\Charge;
3732
use UnzerSDK\test\BasePaymentTest;

0 commit comments

Comments
 (0)