- Replace !x() by empty()
- Add return values to read() and destroy()
public function read($session_id)
{
- if (!x($session_id)) {
+ if (empty($session_id)) {
return '';
}
return true;
}
- Cache::set('session:' . $session_id, $session_data, Session::$expire);
+ $return = Cache::set('session:' . $session_id, $session_data, Session::$expire);
- return true;
+ return $return;
}
public function close()
public function destroy($id)
{
- Cache::delete('session:' . $id);
- return true;
+ $return = Cache::delete('session:' . $id);
+
+ return $return;
}
public function gc($maxlifetime)