decrypt() public method

Decrypts the input text from the cipher key
public decrypt ( $input ) : string
$input
return string
 /**
  * Helper method to decrypt data using clientSecret as key
  *
  * @param $data
  * @return string
  */
 public function decrypt($data)
 {
     return $this->cipher->decrypt($data);
 }