CommitMsgResponseStub::createEnabled()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace PhpGitHooks\Module\Configuration\Tests\Stub;
4
5
use PhpGitHooks\Module\Configuration\Contract\Response\CommitMsgResponse;
6
7
class CommitMsgResponseStub
8
{
9
    const REGULAR_EXPRESSION = 'regular_expression';
10
11
    /**
12
     * @param bool   $commitMsg
13
     * @param string $regularExpression
14
     *
15
     * @return CommitMsgResponse
16
     */
17
    public static function create($commitMsg, $regularExpression)
18
    {
19
        return new CommitMsgResponse($commitMsg, $regularExpression);
20
    }
21
22
    /**
23
     * @return CommitMsgResponse
24
     */
25
    public static function createEnabled()
26
    {
27
        return self::create(true, self::REGULAR_EXPRESSION);
28
    }
29
}
30