ConstraintInterface
last analyzed

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
validate() 0 1 ?
getErrorMessage() 0 1 ?
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Linio\Component\Input\Constraint;
6
7
interface ConstraintInterface
8
{
9
    public function validate($content): bool;
0 ignored issues
show
Coding Style introduced by
function validate() does not seem to conform to the naming convention (^(?:is|has|should|may|supports)).

This check examines a number of code elements and verifies that they conform to the given naming conventions.

You can set conventions for local variables, abstract classes, utility classes, constant, properties, methods, parameters, interfaces, classes, exceptions and special methods.

Loading history...
10
11
    public function getErrorMessage(string $field): string;
12
}
13