summaryrefslogtreecommitdiff
path: root/app/ServiceProvider/SessionProvider.php
blob: 414d9578fbfebf1f580e4e48a082c4fff185e706 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php

namespace Kanboard\ServiceProvider;

use Pimple\Container;
use Pimple\ServiceProviderInterface;
use Kanboard\Core\Session\SessionManager;
use Kanboard\Core\Session\SessionStorage;
use Kanboard\Core\Session\FlashMessage;

class SessionProvider implements ServiceProviderInterface
{
    public function register(Container $container)
    {
        $container['sessionStorage'] = function() {
            return new SessionStorage;
        };

        $container['sessionManager'] = function($c) {
            return new SessionManager($c);
        };

        $container['flash'] = function($c) {
            return new FlashMessage($c);
        };

        return $container;
    }
}