GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

ValidatorMethodName   A
last analyzed

Complexity

Total Complexity 8

Size/Duplication

Total Lines 78
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

Changes 0
Metric Value
wmc 8
lcom 1
cbo 3
dl 0
loc 78
rs 10
c 0
b 0
f 0

7 Methods

Rating   Name   Duplication   Size   Complexity  
A execute() 0 6 1
A validate() 0 4 1
A validateResultKeys() 0 6 2
A getMapping() 0 18 1
A getValidationInfo() 0 4 1
A getValidationTag() 0 4 1
A __toString() 0 4 1
1
<?php
2
3
namespace DF\PHPCoverFish\Validator;
4
5
use DF\PHPCoverFish\Common\CoverFishPHPUnitFile;
6
use DF\PHPCoverFish\Validator\Base\BaseCoverFishValidator;
7
8
/**
9
 * Class ValidatorMethodName, validate that the annotated test method covers the specified method (Class::Method)
10
 *
11
 * @package   DF\PHPCoverFish
12
 * @author    Patrick Paechnatz <[email protected]>
13
 * @copyright 2015 Patrick Paechnatz <[email protected]>
14
 * @license   http://www.opensource.org/licenses/MIT
15
 * @link      http://github.com/dunkelfrosch/phpcoverfish/tree
16
 * @since     class available since Release 0.9.0
17
 * @version   0.9.4
18
 */
19
class ValidatorMethodName extends BaseCoverFishValidator
20
{
21
    /**
22
     * @return array
23
     */
24
    private function execute()
25
    {
26
        preg_match_all('/^(?P<sep>\A\::{1})(?P<method>\w+)$/', $this->coversToken, $this->result, PREG_SET_ORDER);
27
28
        return $this->result;
29
    }
30
31
    /**
32
     * @return bool
33
     */
34
    public function validate()
35
    {
36
        return count($this->execute()) > 0;
37
    }
38
39
    /**
40
     * @return bool
41
     */
42
    public function validateResultKeys()
43
    {
44
        return array_key_exists('sep', $this->getResult())
45
            && array_key_exists('method', $this->getResult()
46
        );
47
    }
48
49
    /**
50
     * @param CoverFishPHPUnitFile $phpUnitFile
51
     *
52
     * @return array
53
     */
54
    public function getMapping(CoverFishPHPUnitFile $phpUnitFile)
55
    {
56
        $method = $this->getResult()['method'];
57
        $classFQN = $phpUnitFile->getCoversDefaultClass();
58
        $class = $this->coverFishHelper->getClassNameFromClassFQN($classFQN);
59
60
        $mappingOptions = array(
61
            'coverToken' => $this->coversToken,
62
            'coverMethod' => $method,
63
            'coverAccessor' => null,
64
            'coverClass' => $class,
65
            'coverClassFQN' => $classFQN,
66
            'validatorMatch' => $this->getValidationTag(),
67
            'validatorClass' => get_class($this)
68
        );
69
70
        return $this->setMapping($mappingOptions);
71
    }
72
73
    /**
74
     * @return string
75
     */
76
    public function getValidationInfo()
77
    {
78
        return 'Specifies that the annotated test method covers the specified global function.';
79
    }
80
81
    /**
82
     * @return string
83
     */
84
    public function getValidationTag()
85
    {
86
        return '::methodName';
87
    }
88
89
    /**
90
     * @return string
91
     */
92
    public function __toString()
93
    {
94
        return get_class($this);
95
    }
96
}