Completed
Push — master ( 650bf0...3755f4 )
by Neomerx
03:55
created

BaseValidator::createErrorAggregator()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php namespace Limoncello\Validation\Validator;
2
3
/**
4
 * Copyright 2015-2016 [email protected] (www.neomerx.com)
5
 *
6
 * Licensed under the Apache License, Version 2.0 (the "License");
7
 * you may not use this file except in compliance with the License.
8
 * You may obtain a copy of the License at
9
 *
10
 * http://www.apache.org/licenses/LICENSE-2.0
11
 *
12
 * Unless required by applicable law or agreed to in writing, software
13
 * distributed under the License is distributed on an "AS IS" BASIS,
14
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
 * See the License for the specific language governing permissions and
16
 * limitations under the License.
17
 */
18
19
use Limoncello\Validation\Contracts\ErrorAggregatorInterface;
20
use Limoncello\Validation\Contracts\RuleInterface;
21
use Limoncello\Validation\Contracts\ValidatorInterface;
22
use Limoncello\Validation\Errors\ErrorAggregator;
23
24
/**
25
 * @package Limoncello\Validation
26
 */
27
abstract class BaseValidator implements ValidatorInterface
28
{
29
30
    /**
31
     * @var RuleInterface
32
     */
33
    private $rule;
34
35
    /**
36
     * @param RuleInterface $rule
37
     */
38 29
    public function __construct(RuleInterface $rule)
39
    {
40 29
        $this->rule = $rule;
41 29
    }
42
43
    /**
44
     * @inheritdoc
45
     */
46 29
    public function validate($input)
47
    {
48 29
        foreach ($this->rule->validate($input) as $error) {
49 28
            yield $error;
50
        };
51
52 29
        $aggregator = $this->createErrorAggregator();
53 29
        $this->rule->onFinish($aggregator);
54 29
        foreach ($aggregator->get() as $error) {
55 4
            yield $error;
56
        }
57 29
    }
58
59
    /**
60
     * @param RuleInterface $rule
61
     *
62
     * @return static
63
     */
64 29
    public static function validator(RuleInterface $rule)
65
    {
66 29
        return new static ($rule);
67
    }
68
69
    /**
70
     * @return ErrorAggregatorInterface
0 ignored issues
show
Documentation introduced by
Consider making the return type a bit more specific; maybe use ErrorAggregator.

This check looks for the generic type array as a return type and suggests a more specific type. This type is inferred from the actual code.

Loading history...
71
     */
72 29
    protected function createErrorAggregator()
73
    {
74 29
        return new ErrorAggregator();
75
    }
76
}
77