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
Push — 2.0 ( e6a123...4184ab )
by Henrique
03:41
created

Contains::isIdenticalToExpectedValue()   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 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 2
crap 1
1
<?php
2
3
/*
4
 * This file is part of Respect/Validation.
5
 *
6
 * (c) Alexandre Gomes Gaigalas <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the "LICENSE.md"
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Respect\Validation\Rules;
13
14
use Respect\Validation\Result;
15
use Respect\Validation\Rule;
16
17
/**
18
 * Validates if the input contains some value.
19
 *
20
 * @author Alexandre Gomes Gaigalas <[email protected]>
21
 * @author Henrique Moody <[email protected]>
22
 *
23
 * @since 0.3.9
24
 */
25
final class Contains implements Rule
26
{
27
    /**
28
     * @var mixed
29
     */
30
    private $expectedValue;
31
32
    /**
33
     * @var bool
34
     */
35
    private $identical;
36
37
    /**
38
     * Initializes the rule.
39
     *
40
     * @param mixed $expectedValue
41
     * @param bool  $identical
42
     */
43 1
    public function __construct($expectedValue, bool $identical = false)
44
    {
45 1
        $this->expectedValue = $expectedValue;
46 1
        $this->identical = $identical;
47 1
    }
48
49
    /**
50
     * {@inheritdoc}
51
     */
52 81
    public function validate($input): Result
53
    {
54 81
        if (is_array($input)) {
55 36
            return new Result(in_array($this->expectedValue, $input, $this->identical), $input, $this);
56
        }
57
58 45
        $stringValResult = (new StringVal())->validate($input);
59 45
        if (!$stringValResult->isValid()) {
60 1
            return new Result(false, $input, $this, [], $stringValResult);
61
        }
62
63 44
        $encoding = mb_detect_encoding($input);
64 44
        if ($this->identical) {
65 24
            return new Result($this->isIdenticalToExpectedValue($input, $encoding), $input, $this);
66
        }
67
68 20
        return new Result($this->isEqualToExpectedValue($input, $encoding), $input, $this);
69
    }
70
71
    /**
72
     * Verifies if the input is equal to the expected value.
73
     *
74
     * @param string $input
75
     * @param string $encoding
76
     *
77
     * @return bool
78
     */
79 20
    private function isEqualToExpectedValue(string $input, string $encoding): bool
80
    {
81 20
        return false !== mb_stripos($input, $this->expectedValue, 0, $encoding);
82
    }
83
84
    /**
85
     * Verifies if the input is identical to the expected value.
86
     *
87
     * @param string $input
88
     * @param string $encoding
89
     *
90
     * @return bool
91
     */
92 24
    private function isIdenticalToExpectedValue(string $input, string $encoding): bool
93
    {
94 24
        return false !== mb_strpos($input, $this->expectedValue, 0, $encoding);
95
    }
96
}
97