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
Pull Request — master (#970)
by Henrique
03:04
created

MinException

Complexity

Total Complexity 0

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
dl 0
loc 13
c 0
b 0
f 0
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
declare(strict_types=1);
13
14
namespace Respect\Validation\Exceptions;
15
16
/**
17
 * @author Alexandre <[email protected]>
18
 * @author Alexandre Gomes Gaigalas <[email protected]>
19
 * @author Henrique Moody <[email protected]>
20
 * @author Not Committed Yet <not.committed.yet>
21
 */
22
final class MinException extends ValidationException
23
{
24
    public const INCLUSIVE = 'inclusive';
25
26
    /**
27
     * {@inheritdoc}
28
     */
29
    public static $defaultTemplates = [
30
        self::MODE_DEFAULT => [
31
            self::STANDARD => '{{name}} must be greater than or equal to {{compareTo}}',
32
        ],
33
        self::MODE_NEGATIVE => [
34
            self::STANDARD => '{{name}} must not be greater than or equal to {{compareTo}}',
35
        ],
36
    ];
37
}
38