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

PhpUnitStrictCoverageResponseStub::create()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

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