Skip to content

Commit 9c99161

Browse files
committed
fix: lint
1 parent b75c045 commit 9c99161

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/EasyPost/Constant/Constants.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ abstract class Constants
2222

2323
// Exception messages (many of these are intended to be used with `sprintf()`)
2424
const ARRAY_REQUIRED_ERROR = 'You must pass an array as the first argument to EasyPost API method calls.';
25-
const COMMUNICATION_ERROR = 'Unexpected error communicating with %s. If this problem persists please let us know at ' . self::SUPPORT_EMAIL . ". %s";
25+
const COMMUNICATION_ERROR = 'Unexpected error communicating with %s. If this problem persists please let us know at ' . self::SUPPORT_EMAIL . '. %s';
2626
const DECODE_WEBHOOK_ERROR = 'There was a problem decoding the webhook.';
27-
const INVALID_PARAMETER_ERROR_WITH_SUGGESTION = "Invalid %s value, must be one of: %s";
27+
const INVALID_PARAMETER_ERROR_WITH_SUGGESTION = 'Invalid %s value, must be one of: %s';
2828
const INVALID_PAYMENT_METHOD_ERROR = 'The chosen payment method is not valid. Please try again.';
2929
const INVALID_SIGNATURE_ERROR = 'Webhook received does not contain an HMAC signature.';
3030
const INVALID_WEBHOOK_VALIDATION_ERROR = 'Webhook received did not originate from EasyPost or had a webhook secret mismatch.';
3131
const MISSING_PARAMETER_ERROR = '%s is required.';
3232
const NO_BILLING_ERROR = 'Billing has not been setup for this user. Please add a payment method.';
33-
const NO_ID_URL_ERROR = "Could not determine which URL to request: %s instance has invalid ID: %s";
33+
const NO_ID_URL_ERROR = 'Could not determine which URL to request: %s instance has invalid ID: %s';
3434
const NO_RATES_ERROR = 'No rates found.';
3535
const NO_RESPONSE_ERROR = 'Did not receive a response from %s.';
3636
const SEND_STRIPE_DETAILS_ERROR = 'Could not send card details to Stripe, please try again later.';
37-
const UNDEFINED_PROPERTY_ERROR = "EasyPost Notice: Undefined property of %s instance: %s";
37+
const UNDEFINED_PROPERTY_ERROR = 'EasyPost Notice: Undefined property of %s instance: %s';
3838
}

0 commit comments

Comments
 (0)