_encrypt() protected method

Serialize and encrypt a given data array.
protected _encrypt ( array $decrypted = [] ) : string
$decrypted array The cleartext data to be encrypted.
return string A Base64 encoded and encrypted string.
Exemplo n.º 1
0
 public function encrypt($decrypted = array())
 {
     return parent::_encrypt($decrypted);
 }