App   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 2
dl 0
loc 10
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A configureContainer() 0 4 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