Completed
Push — master ( 30874d...ed8031 )
by Pablo
02:56
created

PhpUnitStrictCoverageResponseStub   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A create() 0 4 1
A createEnabled() 0 4 1
1
<?php
2
3
namespace PhpGitHooks\Module\Configuration\Tests\Stub;
4
5
use PhpGitHooks\Module\Configuration\Contract\Response\PhpUnitStrictCoverageResponse;
6
7
class PhpUnitStrictCoverageResponseStub
8
{
9
    const MINIMUM = 99.00;
10
11
    /**
12
     * @param bool  $phpunitStrictCoverage
13
     * @param float $minimum
14
     *
15
     * @return PhpUnitStrictCoverageResponse
16
     */
17
    public static function create($phpunitStrictCoverage, $minimum)
18
    {
19
        return new PhpUnitStrictCoverageResponse($phpunitStrictCoverage, $minimum);
20
    }
21
22
    /**
23
     * @return PhpUnitStrictCoverageResponse
24
     */
25
    public static function createEnabled()
26
    {
27
        return self::create(true, self::MINIMUM);
28
    }
29
}
30