Files
masimmo.pl/modules/ps_accounts/vendor/lcobucci/jwt/compat/json-exception-polyfill.php
2024-11-20 09:09:44 +01:00

10 lines
178 B
PHP

<?php
namespace PrestaShop\Module\PsAccounts\Vendor;
if (\PHP_VERSION_ID < 70300 && !\class_exists('JsonException')) {
class JsonException extends \Exception
{
}
}