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

PhpCsResponseStub::createEnabled()   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 0
1
<?php
2
3
namespace PhpGitHooks\Module\Configuration\Tests\Stub;
4
5
use PhpGitHooks\Module\Configuration\Contract\Response\PhpCsResponse;
6
7
class PhpCsResponseStub
8
{
9
    const STANDARD = 'PSR2';
10
11
    /**
12
     * @param bool   $phpCs
13
     * @param string $phpCsStandard
14
     *
15
     * @return PhpCsResponse
16
     */
17
    public static function create($phpCs, $phpCsStandard)
18
    {
19
        return new PhpCsResponse($phpCs, $phpCsStandard);
20
    }
21
22
    /**
23
     * @return PhpCsResponse
24
     */
25
    public static function createEnabled()
26
    {
27
        return self::create(true, self::STANDARD);
28
    }
29
}
30