Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions app/code/local/Cm/RedisSession/Model/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@

// Modman install will have files in module directory (submodule) and composer install
// will have files in vendor directory with autoloader registered
if (is_dir(__DIR__.'/../lib/src/Cm/RedisSession')) {
require_once __DIR__.'/../lib/src/Cm/RedisSession/Handler/ConfigInterface.php';
require_once __DIR__.'/../lib/src/Cm/RedisSession/Handler/LoggerInterface.php';
require_once __DIR__.'/../lib/src/Cm/RedisSession/Handler.php';
require_once __DIR__.'/../lib/src/Cm/RedisSession/ConnectionFailedException.php';
require_once __DIR__.'/../lib/src/Cm/RedisSession/ConcurrentConnectionsExceededException.php';
if (is_dir(Mage::getModuleDir('lib', 'Cm_RedisSession') . DS . 'src' . DS . 'Cm' . DS . 'RedisSession')) {
require_once Mage::getModuleDir('lib', 'Cm_RedisSession') . DS . 'src' . DS . 'Cm' . DS . 'RedisSession' . DS . 'Handler' . DS . 'ConfigInterface.php';
require_once Mage::getModuleDir('lib', 'Cm_RedisSession') . DS . 'src' . DS . 'Cm' . DS . 'RedisSession' . DS . 'Handler' . DS . 'LoggerInterface.php';
require_once Mage::getModuleDir('lib', 'Cm_RedisSession') . DS . 'src' . DS . 'Cm' . DS . 'RedisSession' . DS . 'Handler.php';
require_once Mage::getModuleDir('lib', 'Cm_RedisSession') . DS . 'src' . DS . 'Cm' . DS . 'RedisSession' . DS . 'ConnectionFailedException.php';
require_once Mage::getModuleDir('lib', 'Cm_RedisSession') . DS . 'src' . DS . 'Cm' . DS . 'RedisSession' . DS . 'ConcurrentConnectionsExceededException.php';
}

class Cm_RedisSession_Model_Session implements \Zend_Session_SaveHandler_Interface
Expand Down