MinProperties   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 19
Duplicated Lines 100 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
dl 19
loc 19
ccs 6
cts 6
cp 1
rs 10
c 0
b 0
f 0
wmc 3
lcom 0
cbo 2

1 Method

Rating   Name   Duplication   Size   Complexity  
A validate() 11 11 3

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
namespace League\JsonGuard\Constraint\DraftFour;
4
5
use League\JsonGuard\Assert;
6
use League\JsonGuard\ConstraintInterface;
7
use League\JsonGuard\Validator;
8
use function League\JsonGuard\error;
9
10 View Code Duplication
final class MinProperties implements ConstraintInterface
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
11
{
12
    const KEYWORD = 'minProperties';
13
14
    /**
15
     * {@inheritdoc}
16
     */
17 6
    public function validate($value, $parameter, Validator $validator)
18
    {
19 6
        Assert::type($parameter, 'integer', self::KEYWORD, $validator->getSchemaPath());
20 4
        Assert::nonNegative($parameter, self::KEYWORD, $validator->getSchemaPath());
21
22 2
        if (!is_object($value) || count(get_object_vars($value)) >= $parameter) {
23 2
            return null;
24
        }
25
26 2
        return error('The object must contain at least {parameter} properties.', $validator);
27
    }
28
}
29