1 | <?php |
||
38 | class Config extends ContainerConfig |
||
39 | { |
||
40 | /** |
||
41 | * Cookie |
||
42 | * |
||
43 | * @var array |
||
44 | * |
||
45 | * @access protected |
||
46 | */ |
||
47 | protected $cookie; |
||
48 | |||
49 | /** |
||
50 | * __construct |
||
51 | * |
||
52 | * @param array $cookie Cookie array |
||
53 | * |
||
54 | * @access public |
||
55 | */ |
||
56 | 4 | public function __construct(array $cookie = null) |
|
60 | |||
61 | /** |
||
62 | * Define Aura\Session factories and services |
||
63 | * |
||
64 | * @param Container $di DI Container |
||
65 | * |
||
66 | * @return void |
||
67 | * |
||
68 | * @access public |
||
69 | * |
||
70 | * @SuppressWarnings(PHPMD.ShortVariable) |
||
71 | */ |
||
72 | 4 | public function define(Container $di) |
|
100 | } |
||
101 |