lithium\security\auth\adapter\Http::set()
A pass-through method called by Auth. Returns the value of $data, which is written to
a user's session. When implementing a custom adapter, this method may be used to modify or
reject data before it is written to the session.
Parameters
-
array
$dataUser data to be written to the session.
-
array
$optionsAdapter-specific options. Not implemented in the
Formadapter.
Returns
arrayReturns the value of $data.
Source
public function set($data, array $options = []) {
return $data;
}