Completed
Pull Request — master (#212)
by
unknown
01:20
created

ChurnPHPApplication   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A create() 0 4 1
1
<?php declare(strict_types=1);
2
3
namespace Churn;
4
5
use Symfony\Component\Console\Application;
6
7
final class ChurnPHPApplication
8
{
9
    const VERSION = '0.5.0';
10
11
    public static function create(): Application
12
    {
13
        return new Application('churn-php', self::VERSION);
14
    }
15
}
16