MediaWiki REL1_31
DummySessionBackend.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Session;
4
12 public $data = [
13 'foo' => 1,
14 'bar' => 2,
15 0 => 'zero',
16 ];
17 public $dirty = false;
18
19 public function &getData() {
20 return $this->data;
21 }
22
23 public function dirty() {
24 $this->dirty = true;
25 }
26
27 public function deregisterSession( $index ) {
28 }
29}