Commit 7b37f7d1 authored by Fabien Potencier's avatar Fabien Potencier

minor #1556 update session_storage.rst (adouiri)

This PR was merged into the 2.2.x-dev branch.

Discussion
----------

update session_storage.rst

remove extra spaces

Commits
-------

1279b3ce update session_storage.rst
parents a8ea59d2 1279b3ce
...@@ -28,10 +28,10 @@ With a dedicated PDO service ...@@ -28,10 +28,10 @@ With a dedicated PDO service
$app['pdo.password'] = 'mypassword'; $app['pdo.password'] = 'mypassword';
$app['session.db_options'] = array( $app['session.db_options'] = array(
'db_table' => 'session', 'db_table' => 'session',
'db_id_col' => 'session_id', 'db_id_col' => 'session_id',
'db_data_col' => 'session_value', 'db_data_col' => 'session_value',
'db_time_col' => 'session_time', 'db_time_col' => 'session_time',
); );
$app['pdo'] = function () use ($app) { $app['pdo'] = function () use ($app) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment