Jose\EncrypterInterface::getSupportedCompressionMethods PHP Method

getSupportedCompressionMethods() public method

public getSupportedCompressionMethods ( ) : string[]
return string[]
    public function getSupportedCompressionMethods();

Usage Example

コード例 #1
0
ファイル: JWTCreator.php プロジェクト: spomky-labs/jose
 /**
  * {@inheritdoc}
  */
 public function getSupportedCompressionMethods()
 {
     return false === $this->isEncryptionSupportEnabled() ? [] : $this->encrypter->getSupportedCompressionMethods();
 }