1 | <?php |
||
20 | class Server extends Driver implements SessionDriverInterface |
||
21 | { |
||
22 | |||
23 | /** |
||
24 | * @var string Session cookie name |
||
25 | */ |
||
26 | protected $name = 'SLICKSID'; |
||
27 | |||
28 | /** |
||
29 | * @var string Session cookie domain |
||
30 | */ |
||
31 | protected $domain = null; |
||
32 | |||
33 | /** |
||
34 | * @var integer Session cookie lifetime |
||
35 | */ |
||
36 | protected $lifetime = 0; |
||
37 | |||
38 | /** |
||
39 | * Overrides base constructor to set parameters and initialize session. |
||
40 | * |
||
41 | * @param array $options |
||
42 | */ |
||
43 | 6 | public function __construct(array $options = []) |
|
53 | } |