Completed
Push — master ( 320901...7f6495 )
by Dawid
06:42
created

ValidationViolation   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 57
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 6
lcom 0
cbo 0
dl 0
loc 57
ccs 12
cts 12
cp 1
rs 10
c 0
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A create() 0 4 1
A __toString() 0 4 2
A getMessage() 0 4 1
A getProperty() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Spiechu\SymfonyCommonsBundle\Service\SchemaValidator;
6
7
class ValidationViolation
8
{
9
    /**
10
     * @var string
11
     */
12
    protected $message;
13
14
    /**
15
     * @var null|string
16
     */
17
    protected $property;
18
19
    /**
20
     * @param string      $message
21
     * @param null|string $property
22
     */
23 3
    protected function __construct(string $message, ?string $property = null)
24
    {
25 3
        $this->message = $message;
26 3
        $this->property = $property;
27 3
    }
28
29
    /**
30
     * @return string
31
     */
32 2
    public function __toString(): string
33
    {
34 2
        return sprintf('%s %s', ($property = $this->getProperty()) ? ($property.':') : '', $this->getMessage());
35
    }
36
37
    /**
38
     * @param string      $message
39
     * @param null|string $property
40
     *
41
     * @return ValidationViolation
42
     */
43 3
    public static function create(string $message, ?string $property = null): self
44
    {
45 3
        return new static($message, $property);
46
    }
47
48
    /**
49
     * @return string
50
     */
51 2
    public function getMessage(): string
52
    {
53 2
        return $this->message;
54
    }
55
56
    /**
57
     * @return null|string
58
     */
59 2
    public function getProperty(): ?string
60
    {
61 2
        return $this->property;
62
    }
63
}
64