CommitMsgResponseStub   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

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\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