chore: fix syntax highlighting languages

This commit is contained in:
Oliver Davies 2023-04-22 16:49:04 +01:00
parent 14d096a53b
commit 84be97413d
68 changed files with 215 additions and 215 deletions

View file

@ -43,7 +43,7 @@ the site went live).
This I believe is the Drupal code where the error was being triggered:
```language-php
```php
// modules/contrib/commerce_stripe/src/Plugin/Commerce/PaymentGateway/Stripe.php
public function createPayment(PaymentInterface $payment, $capture = TRUE) {
@ -70,7 +70,7 @@ public function createPayment(PaymentInterface $payment, $capture = TRUE) {
I can also see in the Stripe library where the original error is generated.
```language-php
```php
private static function _specificAPIError($rbody, $rcode, $rheaders, $resp, $errorData)
{
$msg = isset($errorData['message']) ? $errorData['message'] : null;