ControllerServiceProvider::boot()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 2
Bugs 0 Features 1
Metric Value
c 2
b 0
f 1
dl 0
loc 4
rs 10
ccs 2
cts 2
cp 1
cc 1
eloc 1
nc 1
nop 1
crap 1
1
<?php
2
3
namespace OpenTribes\Core\Silex\Provider;
4
5
use OpenTribes\Core\Silex\Controller;
6
use OpenTribes\Core\Silex\Repository;
7
use OpenTribes\Core\Silex\Service;
8
use OpenTribes\Core\Silex\UseCase;
9
use OpenTribes\Core\Silex\Validator;
10
use Silex\Application;
11
use Silex\ServiceProviderInterface;
12
13
class ControllerServiceProvider implements ServiceProviderInterface
14
{
15
    /**
16
     * Registers services on the given app.
17
     *
18
     * This method should only be used to configure services and parameters.
19
     * It should not get services.
20
     *
21
     * @param Application $app An Application instance
22
     */
23 35
    public function register(Application $app)
24
    {
25
        $app[Controller::INDEX] = $app->share(function () use ($app) {
26 10
            return new Controller\IndexController($app[UseCase::LOGIN]);
27 35
        });
28
        $app[Controller::ACCOUNT] = $app->share(function () use ($app) {
29 15
            return new Controller\AccountController($app[UseCase::REGISTRATION], $app[Repository::USER]);
30 35
        });
31 35
        $app[Controller::CITY] = $app->share(function () use ($app) {
32 4
            return new Controller\CityController(
33 4
                $app[UseCase::LIST_DIRECTIONS],
34 4
                $app[Repository::USER],
35 4
                $app[Repository::CITY]);
36 35
        });
37 35
    }
38
39
    /**
40
     * Bootstraps the application.
41
     *
42
     * This method is called after all services are registered
43
     * and should be used for "dynamic" configuration (whenever
44
     * a service must be requested).
45
     */
46 35
    public function boot(Application $app)
47
    {
48
        // TODO: Implement boot() method.
49 35
    }
50
51
}