diff --git a/src/PaymentGateways/Gateways/PayPalStandard/PayPalStandard.php b/src/PaymentGateways/Gateways/PayPalStandard/PayPalStandard.php index 2aed61c1f3..9b231fd996 100644 --- a/src/PaymentGateways/Gateways/PayPalStandard/PayPalStandard.php +++ b/src/PaymentGateways/Gateways/PayPalStandard/PayPalStandard.php @@ -274,7 +274,7 @@ public function getOptions(): array /** * @since 2.20.0 - * @inerhitDoc + * @@inheritDoc * @throws Exception */ public function refundDonation(Donation $donation) diff --git a/src/PaymentGateways/Gateways/Stripe/BECSGateway.php b/src/PaymentGateways/Gateways/Stripe/BECSGateway.php index d6cbdf3fff..71b3b76e47 100644 --- a/src/PaymentGateways/Gateways/Stripe/BECSGateway.php +++ b/src/PaymentGateways/Gateways/Stripe/BECSGateway.php @@ -136,7 +136,7 @@ protected function getPaymentIntentArgs(): array /** * @since 2.20.0 - * @inerhitDoc + * @@inheritDoc * @throws Exception */ public function refundDonation(Donation $donation) diff --git a/src/PaymentGateways/Gateways/Stripe/CheckoutGateway.php b/src/PaymentGateways/Gateways/Stripe/CheckoutGateway.php index 87a66ee335..c6e183839d 100644 --- a/src/PaymentGateways/Gateways/Stripe/CheckoutGateway.php +++ b/src/PaymentGateways/Gateways/Stripe/CheckoutGateway.php @@ -126,7 +126,7 @@ public function getLegacyFormFieldMarkup(int $formId, array $args): string /** * @since 2.20.0 - * @inerhitDoc + * @@inheritDoc * @throws Exception */ public function refundDonation(Donation $donation) diff --git a/src/PaymentGateways/Gateways/Stripe/CreditCardGateway.php b/src/PaymentGateways/Gateways/Stripe/CreditCardGateway.php index 2bd12ced9a..1b1bac6a70 100644 --- a/src/PaymentGateways/Gateways/Stripe/CreditCardGateway.php +++ b/src/PaymentGateways/Gateways/Stripe/CreditCardGateway.php @@ -109,7 +109,7 @@ public function getLegacyFormFieldMarkup(int $formId, array $args): string /** * @since 2.20.0 - * @inerhitDoc + * @@inheritDoc * @throws Exception */ public function refundDonation(Donation $donation) diff --git a/src/PaymentGateways/Gateways/Stripe/Migrations/AddMissingTransactionIdForUncompletedDonations.php b/src/PaymentGateways/Gateways/Stripe/Migrations/AddMissingTransactionIdForUncompletedDonations.php index 30948650d7..76ffe06558 100644 --- a/src/PaymentGateways/Gateways/Stripe/Migrations/AddMissingTransactionIdForUncompletedDonations.php +++ b/src/PaymentGateways/Gateways/Stripe/Migrations/AddMissingTransactionIdForUncompletedDonations.php @@ -12,7 +12,7 @@ class AddMissingTransactionIdForUncompletedDonations extends Migration { /** - * @inerhitDoc + * @@inheritDoc */ public static function id() { @@ -20,7 +20,7 @@ public static function id() } /** - * @inerhitDoc + * @@inheritDoc */ public static function timestamp() { @@ -28,7 +28,7 @@ public static function timestamp() } /** - * @inerhitDoc + * @@inheritDoc */ public function run() { @@ -71,7 +71,7 @@ public function run() } /** - * @inerhitDoc + * @@inheritDoc */ public static function title() { diff --git a/src/PaymentGateways/Gateways/Stripe/Migrations/AddStatementDescriptorToStripeAccounts.php b/src/PaymentGateways/Gateways/Stripe/Migrations/AddStatementDescriptorToStripeAccounts.php index 50b42aa4bf..bee51653a3 100644 --- a/src/PaymentGateways/Gateways/Stripe/Migrations/AddStatementDescriptorToStripeAccounts.php +++ b/src/PaymentGateways/Gateways/Stripe/Migrations/AddStatementDescriptorToStripeAccounts.php @@ -15,7 +15,7 @@ class AddStatementDescriptorToStripeAccounts extends Migration use HasStripeStatementDescriptorText; /** - * @inerhitDoc + * @@inheritDoc * @since 2.19.0 * @since 2.19.1 Use old stripe statement descriptor requirements to filter text. * https://github.com/impress-org/givewp/pull/6269 @@ -42,7 +42,7 @@ public function run() } /** - * @inerhitDoc + * @@inheritDoc * @since 2.19.0 */ public static function id() @@ -51,7 +51,7 @@ public static function id() } /** - * @inerhitDoc + * @@inheritDoc * @since 2.19.0 */ public static function timestamp() @@ -60,7 +60,7 @@ public static function timestamp() } /** - * @inerhitDoc + * @@inheritDoc * @since 2.19.0 */ public static function title() diff --git a/src/PaymentGateways/Gateways/Stripe/SEPAGateway.php b/src/PaymentGateways/Gateways/Stripe/SEPAGateway.php index be52b751bb..b1ac3913d0 100644 --- a/src/PaymentGateways/Gateways/Stripe/SEPAGateway.php +++ b/src/PaymentGateways/Gateways/Stripe/SEPAGateway.php @@ -138,7 +138,7 @@ protected function getPaymentIntentArgs(): array /** * @since 2.20.0 - * @inerhitDoc + * @@inheritDoc * @throws Exception */ public function refundDonation(Donation $donation) diff --git a/src/PaymentGateways/Gateways/Stripe/Webhooks/Listeners/ChargeRefunded.php b/src/PaymentGateways/Gateways/Stripe/Webhooks/Listeners/ChargeRefunded.php index 5306359917..21cdf4ec98 100644 --- a/src/PaymentGateways/Gateways/Stripe/Webhooks/Listeners/ChargeRefunded.php +++ b/src/PaymentGateways/Gateways/Stripe/Webhooks/Listeners/ChargeRefunded.php @@ -16,7 +16,7 @@ class ChargeRefunded extends StripeEventListener /** * @since 2.21.0 * - * @inerhitDoc + * @@inheritDoc */ public function processEvent(Event $event) { @@ -56,7 +56,7 @@ private function addSupportForLegacyActionHook(Event $event) /** * @since 2.21.0 - * @inerhitDoc + * @@inheritDoc */ protected function getDonation(Event $event) { diff --git a/src/PaymentGateways/Gateways/Stripe/Webhooks/Listeners/CheckoutSessionCompleted.php b/src/PaymentGateways/Gateways/Stripe/Webhooks/Listeners/CheckoutSessionCompleted.php index 7f83edf4f7..a78237e21c 100644 --- a/src/PaymentGateways/Gateways/Stripe/Webhooks/Listeners/CheckoutSessionCompleted.php +++ b/src/PaymentGateways/Gateways/Stripe/Webhooks/Listeners/CheckoutSessionCompleted.php @@ -16,7 +16,7 @@ class CheckoutSessionCompleted extends StripeEventListener /** * @since 2.21.0 * - * @inerhitDoc + * @@inheritDoc */ public function processEvent(Event $event) { diff --git a/src/PaymentGateways/Gateways/Stripe/Webhooks/Listeners/PaymentIntentPaymentFailed.php b/src/PaymentGateways/Gateways/Stripe/Webhooks/Listeners/PaymentIntentPaymentFailed.php index e021a70bbb..20adee50ef 100644 --- a/src/PaymentGateways/Gateways/Stripe/Webhooks/Listeners/PaymentIntentPaymentFailed.php +++ b/src/PaymentGateways/Gateways/Stripe/Webhooks/Listeners/PaymentIntentPaymentFailed.php @@ -12,7 +12,7 @@ class PaymentIntentPaymentFailed extends StripeEventListener /** * @since 2.21.0 * - * @inerhitDoc + * @@inheritDoc */ public function processEvent(Event $event) { diff --git a/src/PaymentGateways/Gateways/Stripe/Webhooks/Listeners/PaymentIntentSucceeded.php b/src/PaymentGateways/Gateways/Stripe/Webhooks/Listeners/PaymentIntentSucceeded.php index 2708109c83..5bd59e59c8 100644 --- a/src/PaymentGateways/Gateways/Stripe/Webhooks/Listeners/PaymentIntentSucceeded.php +++ b/src/PaymentGateways/Gateways/Stripe/Webhooks/Listeners/PaymentIntentSucceeded.php @@ -15,7 +15,7 @@ class PaymentIntentSucceeded extends StripeEventListener /** * @since 2.21.0 - * @inerhitDoc + * @@inheritDoc */ public function processEvent(Event $event) { diff --git a/src/PaymentGateways/Gateways/TestGateway/TestGateway.php b/src/PaymentGateways/Gateways/TestGateway/TestGateway.php index c4d05e13b4..507583aee3 100644 --- a/src/PaymentGateways/Gateways/TestGateway/TestGateway.php +++ b/src/PaymentGateways/Gateways/TestGateway/TestGateway.php @@ -99,7 +99,7 @@ public function createPayment(Donation $donation, $gatewayData): GatewayCommand /** * @since 2.29.0 Return PaymentRefunded instead of a bool value * @since 2.20.0 - * @inerhitDoc + * @@inheritDoc */ public function refundDonation(Donation $donation): PaymentRefunded { diff --git a/src/PaymentGateways/Gateways/TestOffsiteGateway/TestOffsiteGateway.php b/src/PaymentGateways/Gateways/TestOffsiteGateway/TestOffsiteGateway.php index 471ca8deaf..c4731773d2 100644 --- a/src/PaymentGateways/Gateways/TestOffsiteGateway/TestOffsiteGateway.php +++ b/src/PaymentGateways/Gateways/TestOffsiteGateway/TestOffsiteGateway.php @@ -128,7 +128,7 @@ public function createPayment(Donation $donation, $gatewayData) /** * @since 2.29.0 Return PaymentRefunded instead of a bool value * @since 2.20.0 - * @inerhitDoc + * @@inheritDoc */ public function refundDonation(Donation $donation): PaymentRefunded { diff --git a/src/PaymentGateways/Migrations/CopyV2GatewaysSettingsToV3.php b/src/PaymentGateways/Migrations/CopyV2GatewaysSettingsToV3.php index a57fdab09e..2f0d9b62ef 100644 --- a/src/PaymentGateways/Migrations/CopyV2GatewaysSettingsToV3.php +++ b/src/PaymentGateways/Migrations/CopyV2GatewaysSettingsToV3.php @@ -11,7 +11,7 @@ class CopyV2GatewaysSettingsToV3 extends Migration { /** - * @inerhitDoc + * @@inheritDoc */ public static function id() { @@ -19,7 +19,7 @@ public static function id() } /** - * @inerhitDoc + * @@inheritDoc */ public static function timestamp() { @@ -27,7 +27,7 @@ public static function timestamp() } /** - * @inerhitDoc + * @@inheritDoc */ public function run() { @@ -55,7 +55,7 @@ public function run() } /** - * @inerhitDoc + * @@inheritDoc */ public static function title() { diff --git a/src/PaymentGateways/PayPalCommerce/Migrations/RegisterPayPalDonationsRefreshTokenCronJobByMode.php b/src/PaymentGateways/PayPalCommerce/Migrations/RegisterPayPalDonationsRefreshTokenCronJobByMode.php index df91853dd1..1c77394db8 100644 --- a/src/PaymentGateways/PayPalCommerce/Migrations/RegisterPayPalDonationsRefreshTokenCronJobByMode.php +++ b/src/PaymentGateways/PayPalCommerce/Migrations/RegisterPayPalDonationsRefreshTokenCronJobByMode.php @@ -21,7 +21,7 @@ class RegisterPayPalDonationsRefreshTokenCronJobByMode extends Migration { /** - * @inerhitDoc + * @@inheritDoc * @since 2.30.0 */ public function run() @@ -57,7 +57,7 @@ public function run() } /** - * @inerhitDoc + * @@inheritDoc * @since 2.30.0 */ public static function id() @@ -66,7 +66,7 @@ public static function id() } /** - * @inerhitDoc + * @@inheritDoc * @since 2.30.0 */ public static function timestamp() @@ -75,7 +75,7 @@ public static function timestamp() } /** - * @inerhitDoc + * @@inheritDoc * @since 2.30.0 */ public static function title() diff --git a/src/PaymentGateways/PayPalCommerce/Migrations/RemoveLogWithCardInfo.php b/src/PaymentGateways/PayPalCommerce/Migrations/RemoveLogWithCardInfo.php index 89b5350ff5..7964ac3ef6 100644 --- a/src/PaymentGateways/PayPalCommerce/Migrations/RemoveLogWithCardInfo.php +++ b/src/PaymentGateways/PayPalCommerce/Migrations/RemoveLogWithCardInfo.php @@ -26,7 +26,7 @@ public function run() } /** - * @inerhitDoc + * @@inheritDoc */ public static function id() { @@ -34,7 +34,7 @@ public static function id() } /** - * @inerhitDoc + * @@inheritDoc */ public static function timestamp() { @@ -42,7 +42,7 @@ public static function timestamp() } /** - * @inerhitDoc + * @@inheritDoc */ public static function title() { diff --git a/src/PaymentGateways/PayPalCommerce/PayPalCommerce.php b/src/PaymentGateways/PayPalCommerce/PayPalCommerce.php index b5fc0fddf4..e7608287d2 100644 --- a/src/PaymentGateways/PayPalCommerce/PayPalCommerce.php +++ b/src/PaymentGateways/PayPalCommerce/PayPalCommerce.php @@ -76,7 +76,7 @@ public function getPaymentMethodLabel(): string } /** - * @inerhitDoc + * @@inheritDoc * @since 2.19.0 * * @param array{paypalOrder: PayPalOrder} $gatewayData @@ -245,7 +245,7 @@ public function getOptions() /** * @since 2.20.0 - * @inerhitDoc + * @@inheritDoc * @throws Exception */ public function refundDonation(Donation $donation)