MockApplication::setBuildName()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
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