Skip to content

Commit 6ee886f

Browse files
keradusnicolas-grekas
authored andcommitted
PHP CS Fixer: clean up repo and adjust config
1 parent cbec781 commit 6ee886f

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

Session/Storage/Handler/LegacyPdoSessionHandler.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ class LegacyPdoSessionHandler implements \SessionHandlerInterface
5454
private $timeCol;
5555

5656
/**
57+
* Construct new legacy PDO session handler.
58+
*
5759
* List of available options:
5860
* * db_table: The name of the table [required]
5961
* * db_id_col: The column where to store the session id [default: sess_id]

Session/Storage/Handler/MemcacheSessionHandler.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ class MemcacheSessionHandler implements \SessionHandlerInterface
2929
private $prefix;
3030

3131
/**
32+
* Constructor.
33+
*
3234
* List of available options:
3335
* * prefix: The prefix to use for the memcache keys in order to avoid collision
3436
* * expiretime: The time to live in seconds

Session/Storage/Handler/MemcachedSessionHandler.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ class MemcachedSessionHandler implements \SessionHandlerInterface
3434
private $prefix;
3535

3636
/**
37+
* Constructor.
38+
*
3739
* List of available options:
3840
* * prefix: The prefix to use for the memcached keys in order to avoid collision
3941
* * expiretime: The time to live in seconds

Session/Storage/Handler/MongoDbSessionHandler.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ class MongoDbSessionHandler implements \SessionHandlerInterface
2929
private $options;
3030

3131
/**
32+
* Constructor.
33+
*
3234
* List of available options:
3335
* * database: The name of the database [required]
3436
* * collection: The name of the collection [required]

0 commit comments

Comments
 (0)