Skip to content

Commit

Permalink
WI-77313 remove redundant methods.
Browse files Browse the repository at this point in the history
class doesn't implemetn SessionUpdateTimestampHandlerInterface anymore
  • Loading branch information
isfedorov committed Apr 29, 2024
1 parent dc69854 commit 29f9ddc
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions session/SessionHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -286,27 +286,4 @@ public function write(
#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $id,
#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $data
): bool {}

/**
* Validate session id
* @param string $session_id The session id
* @return bool <p>
* Note this value is returned internally to PHP for processing.
* </p>
*/
public function validateId($session_id) {}

/**
* Update timestamp of a session
* @param string $session_id The session id
* @param string $session_data <p>
* The encoded session data. This data is the
* result of the PHP internally encoding
* the $_SESSION superglobal to a serialized
* string and passing it as this parameter.
* Please note sessions use an alternative serialization method.
* </p>
* @return bool
*/
public function updateTimestamp($session_id, $session_data) {}
}

0 comments on commit 29f9ddc

Please sign in to comment.