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 — master ( 327297...7d4281 )
by Henrique
02:56
created

Base64::validate()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 12
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 3.0416

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 12
ccs 5
cts 6
cp 0.8333
rs 9.4285
cc 3
eloc 6
nc 3
nop 1
crap 3.0416
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
class Base64 extends AbstractRule
15
{
16 17
    public function validate($input)
17
    {
18 17
        if (!is_string($input)) {
19
            return false;
20
        }
21
22 17
        if (!preg_match('#^[A-Za-z0-9+/\n\r]+={0,2}$#', $input)) {
23 4
            return false;
24
        }
25
26 13
        return strlen($input) % 4 === 0;
27
    }
28
}
29