Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Completed
Pull Request — master (#678)
by Henrique
02:58
created

Message::getAll()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 3
c 0
b 0
f 0
ccs 0
cts 3
cp 0
rs 10
cc 1
eloc 1
nc 1
nop 0
crap 2
1
<?php
2
3
namespace Respect\Validation\Message;
4
5
use Doctrine\Common\Annotations\Reader;
6
use Respect\Validation\Result;
7
8
final class Message
9
{
10
    /**
11
     * @var Result
12
     */
13
    private $result;
14
15
    /**
16
     * @var Reader
17
     */
18
    private $annotationReader;
19
20
    public function __construct(Result $result, Reader $annotationReader)
21
    {
22
        $this->result = $result;
23
        $this->annotationReader = $annotationReader;
24
    }
25
26
    public function getMain(): string
27
    {
28
    }
29
30
    public function getFull(): string
31
    {
32
    }
33
34
    public function getList(): string
35
    {
36
    }
37
38
    public function getAll(): array
39
    {
40
    }
41
42
    public function __toString(): string
43
    {
44
        return $this->getMain();
45
    }
46
}
47