meraproject/vendor/lcobucci/jwt/compat/json-exception-polyfill.php

8 lines
128 B
PHP
Raw Normal View History

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