PhpMdResponseStub   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\PhpMdResponse;
6
7
class PhpMdResponseStub
8
{
9
    const OPTIONS = '--minimumpriority 1';
10
11
    /**
12
     * @param bool        $phpMd
13
     * @param string|null $phpOptions
14
     *
15
     * @return PhpMdResponse
16
     */
17
    public static function create($phpMd, $phpOptions)
18
    {
19
        return new PhpMdResponse($phpMd, $phpOptions);
20
    }
21
22
    /**
23
     * @return PhpMdResponse
24
     */
25
    public static function createEnabled()
26
    {
27
        return self::create(true, self::OPTIONS);
28
    }
29
}
30