summaryrefslogtreecommitdiff
path: root/tests/Unit/Http/SessionHandlers/Stub/ArrayHandler.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Http/SessionHandlers/Stub/ArrayHandler.php')
-rw-r--r--tests/Unit/Http/SessionHandlers/Stub/ArrayHandler.php59
1 files changed, 59 insertions, 0 deletions
diff --git a/tests/Unit/Http/SessionHandlers/Stub/ArrayHandler.php b/tests/Unit/Http/SessionHandlers/Stub/ArrayHandler.php
new file mode 100644
index 00000000..4d37da48
--- /dev/null
+++ b/tests/Unit/Http/SessionHandlers/Stub/ArrayHandler.php
@@ -0,0 +1,59 @@
+<?php
+
+namespace Engelsystem\Test\Unit\Http\SessionHandlers\Stub;
+
+use Engelsystem\Http\SessionHandlers\AbstractHandler;
+
+class ArrayHandler extends AbstractHandler
+{
+ /** @var string[] */
+ protected $content = [];
+
+ /**
+ * {@inheritdoc}
+ */
+ public function read($id): string
+ {
+ if (isset($this->content[$id])) {
+ return $this->content[$id];
+ }
+
+ return '';
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function write($id, $data): bool
+ {
+ $this->content[$id] = $data;
+
+ return true;
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function destroy($id): bool
+ {
+ unset($this->content[$id]);
+
+ return true;
+ }
+
+ /**
+ * @return string
+ */
+ public function getName(): string
+ {
+ return $this->name;
+ }
+
+ /**
+ * @return string
+ */
+ public function getSessionPath(): string
+ {
+ return $this->sessionPath;
+ }
+}