MockApplication   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Coupling/Cohesion

Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
cbo 1
dl 0
loc 6
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A setBuildName() 0 3 1
1
<?php
2
3
/**
4
 * This file is part of bldr
5
 *
6
 * (c) Aaron Scherer <[email protected]>
7
 *
8
 * This source file is subject to the license that is bundled
9
 * with this source code in the file LICENSE
10
 */
11
12
namespace Bldr\Test\Mock;
13
14
use Symfony\Component\Console\Application;
15
16
/**
17
 * @author Aaron Scherer <[email protected]>
18
 */
19
class MockApplication extends Application
20
{
21
    public function setBuildName()
22
    {
23
    }
24
}
25