OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
aws-ses
/
vendor
/
aws
/
aws-sdk-php
/
src
/
DynamoDb
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/14/2024 10:55:35 AM
rwxr-xr-x
📄
BinaryValue.php
780 bytes
08/14/2024 10:52:00 AM
rw-r--r--
📄
DynamoDbClient.php
13.78 KB
08/14/2024 10:52:00 AM
rw-r--r--
📁
Exception
-
08/14/2024 10:55:09 AM
rwxr-xr-x
📄
LockingSessionConnection.php
1.94 KB
08/14/2024 10:52:00 AM
rw-r--r--
📄
Marshaler.php
9.83 KB
08/14/2024 10:52:00 AM
rw-r--r--
📄
NumberValue.php
582 bytes
08/14/2024 10:52:00 AM
rw-r--r--
📄
SessionConnectionConfigTrait.php
6.11 KB
08/14/2024 10:52:00 AM
rw-r--r--
📄
SessionConnectionInterface.php
1.04 KB
08/14/2024 10:52:00 AM
rw-r--r--
📄
SessionHandler.php
8.08 KB
08/14/2024 10:52:00 AM
rw-r--r--
📄
SetValue.php
1010 bytes
08/14/2024 10:52:00 AM
rw-r--r--
📄
StandardSessionConnection.php
4.61 KB
08/14/2024 10:52:01 AM
rw-r--r--
📄
WriteRequestBatch.php
9.6 KB
08/14/2024 10:52:01 AM
rw-r--r--
Editing: SessionConnectionInterface.php
Close
<?php namespace Aws\DynamoDb; /** * The session connection provides the underlying logic for interacting with * Amazon DynamoDB and performs all of the reading and writing operations. */ interface SessionConnectionInterface { /** * Reads session data from DynamoDB * * @param string $id Session ID * * @return array */ public function read($id); /** * Writes session data to DynamoDB * * @param string $id Session ID * @param string $data Serialized session data * @param bool $isChanged Whether or not the data has changed * * @return bool */ public function write($id, $data, $isChanged); /** * Deletes session record from DynamoDB * * @param string $id Session ID * * @return bool */ public function delete($id); /** * Performs garbage collection on the sessions stored in the DynamoDB * * @return bool */ public function deleteExpired(); }