UnsupportedHeaderFound.php 326 B

12345678910111213141516
  1. <?php
  2. namespace Lcobucci\JWT\Token;
  3. use InvalidArgumentException;
  4. use Lcobucci\JWT\Exception;
  5. final class UnsupportedHeaderFound extends InvalidArgumentException implements Exception
  6. {
  7. /** @return self */
  8. public static function encryption()
  9. {
  10. return new self('Encryption is not supported yet');
  11. }
  12. }