getSupportedCompressionMethods() public method

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