Application   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getRootNamespace() 0 3 1
1
<?php
2
3
namespace ByTIC\Notifier\Tests\Fixtures\Library;
4
5
/**
6
 * Class Application
7
 * @package ByTIC\Notifier\Tests\Fixtures\Library
8
 */
9
class Application extends \Nip\Application\Application
10
{
11
12
    /**
13
     * @inheritdoc
14
     */
15
    public function getRootNamespace()
16
    {
17
        return 'ByTIC\Notifier\Tests\Fixtures';
18
    }
19
}
20