This commit is contained in:
Andrej Hudec 2012-03-17 00:59:57 +01:00
parent 91e977d38c
commit f351cdc52c
13 changed files with 16 additions and 35 deletions

View File

@ -12,7 +12,7 @@
namespace Symfony\Component\HttpFoundation\Session\Storage\Handler;
/**
* MemcacheSessionStorage.
* MemcacheSessionHandler.
*
* @author Drak <drak@zikula.org>
*/
@ -45,8 +45,6 @@ class MemcacheSessionHandler implements \SessionHandlerInterface
* @param \Memcache $memcache A \Memcache instance
* @param array $memcacheOptions An associative array of Memcache options
* @param array $options Session configuration options.
*
* @see AbstractSessionStorage::__construct()
*/
public function __construct(\Memcache $memcache, array $memcacheOptions = array(), array $options = array())
{

View File

@ -12,7 +12,7 @@
namespace Symfony\Component\HttpFoundation\Session\Storage\Handler;
/**
* MemcachedSessionStorage.
* MemcachedSessionHandler.
*
* Memcached based session storage handler based on the Memcached class
* provided by the PHP memcached extension.
@ -43,8 +43,6 @@ class MemcachedSessionHandler implements \SessionHandlerInterface
* @param \Memcached $memcached A \Memcached instance
* @param array $memcachedOptions An associative array of Memcached options
* @param array $options Session configuration options.
*
* @see AbstractSessionStorage::__construct()
*/
public function __construct(\Memcached $memcached, array $memcachedOptions = array(), array $options = array())
{

View File

@ -12,7 +12,7 @@
namespace Symfony\Component\HttpFoundation\Session\Storage\Handler;
/**
* NativeMemcacheSessionStorage.
* NativeMemcacheSessionHandler.
*
* Driver for the memcache session save hadlers provided by the memcache PHP extension.
*
@ -27,8 +27,6 @@ class NativeMemcacheSessionHandler extends NativeSessionHandler
*
* @param string $savePath Path of memcache server.
* @param array $options Session configuration options.
*
* @see AbstractSessionStorage::__construct()
*/
public function __construct($savePath = 'tcp://127.0.0.1:11211?persistent=0', array $options = array())
{
@ -47,9 +45,7 @@ class NativeMemcacheSessionHandler extends NativeSessionHandler
}
/**
* {@inheritdoc}
*
* Sets any values memcached ini values.
* Set any memcached ini values.
*
* @see http://php.net/memcache.ini
*/

View File

@ -12,7 +12,7 @@
namespace Symfony\Component\HttpFoundation\Session\Storage\Handler;
/**
* NativeMemcachedSessionStorage.
* NativeMemcachedSessionHandler.
*
* Driver for the memcached session save hadlers provided by the memcached PHP extension.
*
@ -27,8 +27,6 @@ class NativeMemcachedSessionHandler extends NativeSessionHandler
*
* @param string $savePath Comma separated list of servers: e.g. memcache1.example.com:11211,memcache2.example.com:11211
* @param array $options Session configuration options.
*
* @see AbstractSessionStorage::__construct()
*/
public function __construct($savePath = '127.0.0.1:11211', array $options = array())
{
@ -47,9 +45,7 @@ class NativeMemcachedSessionHandler extends NativeSessionHandler
}
/**
* {@inheritdoc}
*
* Sets any values memcached ini values.
* Set any memcached ini values.
*
* @see https://github.com/php-memcached-dev/php-memcached/blob/master/memcached.ini
*/

View File

@ -12,7 +12,7 @@
namespace Symfony\Component\HttpFoundation\Session\Storage\Handler;
/**
* NativeSqliteSessionStorage.
* NativeSqliteSessionHandler.
*
* Driver for the sqlite session save hadlers provided by the SQLite PHP extension.
*
@ -25,8 +25,6 @@ class NativeSqliteSessionHandler extends NativeSessionHandler
*
* @param string $savePath Path to SQLite database file itself.
* @param array $options Session configuration options.
*
* @see AbstractSessionStorage::__construct()
*/
public function __construct($savePath, array $options = array())
{
@ -45,9 +43,7 @@ class NativeSqliteSessionHandler extends NativeSessionHandler
}
/**
* {@inheritdoc}
*
* Sets any values sqlite ini values.
* Set any sqlite ini values.
*
* @see http://php.net/sqlite.configuration
*/

View File

@ -12,7 +12,7 @@
namespace Symfony\Component\HttpFoundation\Session\Storage\Handler;
/**
* NullSessionStorage.
* NullSessionHandler.
*
* Can be used in unit testing or in a sitation where persisted sessions are not desired.
*

View File

@ -12,7 +12,7 @@
namespace Symfony\Component\HttpFoundation\Session\Storage\Handler;
/**
* PdoSessionStorage.
* PdoSessionHandler.
*
* @author Fabien Potencier <fabien@symfony.com>
* @author Michael Williams <michael.williams@funsational.com>
@ -37,14 +37,11 @@ class PdoSessionHandler implements \SessionHandlerInterface
/**
* Constructor.
*
*
* @param \PDO $pdo A \PDO instance
* @param array $dbOptions An associative array of DB options
* @param array $options Session configuration options
*
* @throws \InvalidArgumentException When "db_table" option is not provided
*
* @see AbstractSessionStorage::__construct()
*/
public function __construct(\PDO $pdo, array $dbOptions = array(), array $options = array())
{

View File

@ -14,7 +14,7 @@ namespace Symfony\Bridge\Doctrine\HttpFoundation;
use Symfony\Bridge\Doctrine\HttpFoundation\DbalSessionHandler;
/**
* Test class for DbalSessionStorage.
* Test class for DbalSessionHandler.
*
* @author Drak <drak@zikula.org>
*/

View File

@ -7,7 +7,7 @@ use Symfony\Component\HttpFoundation\Session\Storage\Handler\MemcacheSessionHand
class MemcacheSessionHandlerTest extends \PHPUnit_Framework_TestCase
{
/**
* @var MemcacheSessionStorage
* @var MemcacheSessionHandler
*/
protected $storage;

View File

@ -17,7 +17,7 @@ class NativeMemcacheSessionHandlerTest extends \PHPUnit_Framework_TestCase
public function testSaveHandlers()
{
if (!extension_loaded('memcache')) {
$this->markTestSkipped('Skipped tests SQLite extension is not present');
$this->markTestSkipped('Skipped tests memcache extension is not present');
}
$storage = new NativeSessionStorage(array('name' => 'TESTING'), new NativeMemcacheSessionHandler('tcp://127.0.0.1:11211?persistent=0'));

View File

@ -17,7 +17,7 @@ class NativeMemcachedSessionHandlerTest extends \PHPUnit_Framework_TestCase
public function testSaveHandlers()
{
if (!extension_loaded('memcached')) {
$this->markTestSkipped('Skipped tests SQLite extension is not present');
$this->markTestSkipped('Skipped tests memcached extension is not present');
}
// test takes too long if memcached server is not running

View File

@ -6,7 +6,7 @@ use Symfony\Component\HttpFoundation\Session\Storage\Handler\NativeSqliteSession
use Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage;
/**
* Test class for NativeSqliteSessionStorage.
* Test class for NativeSqliteSessionHandler.
*
* @author Drak <drak@zikula.org>
*

View File

@ -9,7 +9,7 @@ use Symfony\Component\HttpFoundation\Session\Flash\FlashBag;
use Symfony\Component\HttpFoundation\Session\Attribute\AttributeBag;
/**
* Test class for AbstractSessionStorage.
* Test class for NativeSessionStorage.
*
* @author Drak <drak@zikula.org>
*