Passed
Push — fix-scrutinizer ( c016b0 )
by Akihito
04:28 queued 02:06
created

Types   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace BEAR\AppMeta;
6
7
/**
8
 * Type definitions for BEAR.AppMeta
9
 *
10
 * @phpcs:disable SlevomatCodingStandard.Commenting.DocCommentSpacing
11
 *
12
 * Domain Types
13
 * @psalm-type AppName = non-empty-string
14
 * @psalm-type Context = non-empty-string
15
 * @psalm-type AppDir = non-empty-string
16
 * @psalm-type TmpDir = non-empty-string
17
 * @psalm-type LogDir = non-empty-string
18
 * @psalm-type UriPath = non-empty-string
19
 * @psalm-type FilePath = non-empty-string
20
 * @psalm-type Scheme = 'app'|'page'|'*'
21
 */
22
final class Types
23
{
24
    /** @codeCoverageIgnore */
25
    private function __construct()
26
    {
27
    }
28
}
29