_decrypt() protected méthode

Decrypt and unserialize a previously encrypted string.
protected _decrypt ( string $encrypted ) : array
$encrypted string The base64 encoded and encrypted string.
Résultat array The cleartext data.
Exemple #1
0
 public function decrypt($encrypted)
 {
     return parent::_decrypt($encrypted);
 }