summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2022-01-08 00:32:39 +0100
committerAndrey Andreev <narf@devilix.net>2022-01-08 00:33:05 +0100
commit413381e7c9f297f94dff156adc4db00ba6ba2c9b (patch)
tree5665cb5e88460f8fb9cc11ef39efa3d90249f943
parent3853472a6ea2db4fbaf7d259184245b35b004fdf (diff)
[ci skip] Fix CI_Session_driver_interface for PHP 5 (ref #6078)
-rw-r--r--system/libraries/Session/OldSessionWrapper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Session/OldSessionWrapper.php b/system/libraries/Session/OldSessionWrapper.php
index 5934b5218..a8bc1d0c0 100644
--- a/system/libraries/Session/OldSessionWrapper.php
+++ b/system/libraries/Session/OldSessionWrapper.php
@@ -49,7 +49,7 @@ defined('BASEPATH') OR exit('No direct script access allowed');
*/
class CI_SessionWrapper implements SessionHandlerInterface {
- protected CI_Session_driver_interface $driver;
+ protected $driver;
public function __construct(CI_Session_driver_interface $driver)
{