Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 426 Bytes

topics-session.md

File metadata and controls

17 lines (15 loc) · 426 Bytes

Using the Session component

To use the Session component, in addition to configuring the connection as described in Installation section, you also have to configure the session component to be yii\mongodb\Session:

return [
    //....
    'components' => [
        // ...
        'session' => [
            'class' => 'yii\mongodb\Session',
        ],
    ]
];