Constants   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 4
c 1
b 0
f 0
dl 0
loc 10
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
namespace Apie\OpenapiSchema;
3
4
final class Constants
5
{
6
    const VALID_KEY_REGEX = '/^[a-zA-Z0-9\.\-_]+$/';
7
8
    const VALID_EXPRESSION_REGEX = '/^{[^{]+}$/';
9
10
    const OPENAPI_VERSION = '3.1.0';
11
12
    private function __construct()
13
    {
14
    }
15
}
16