for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: afshin
* Date: 12/8/17
* Time: 1:01 AM
*/
namespace Core\Services;
class Session
{
public $handler;
public function init($driver)
$namespace = 'Core\\Handlers\\Session\\';
$className = $namespace.ucfirst($driver).'Handler';
$this->handler = new $className();
return $this->handler;
}