App::configureContainer()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
/**
3
 * Push notification server example (http://github.com/juliangut/tify_example)
4
 *
5
 * @link https://github.com/juliangut/tify_example for the canonical source repository
6
 *
7
 * @license https://github.com/juliangut/tify_example/blob/master/LICENSE
8
 */
9
10
namespace Jgut\Pusher;
11
12
use DI\Bridge\Slim\App as BaseApp;
13
use DI\ContainerBuilder;
14
15
/**
16
 * Class App
17
 */
18
class App extends BaseApp
19
{
20
    /**
21
     * {@inheritdoc}
22
     */
23
    protected function configureContainer(ContainerBuilder $builder)
24
    {
25
        $builder->addDefinitions(__DIR__ . '/../config/definitions.php');
26
    }
27
}
28