Files
b2b.redline.com.pl/modules/ps_accounts/vendor/lcobucci/jwt/compat/json-exception-polyfill.php
2025-06-24 14:14:35 +02:00

8 lines
128 B
PHP

<?php
if (PHP_VERSION_ID < 70300 && ! class_exists('JsonException')) {
class JsonException extends Exception
{
}
}