Types::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 0
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 2
rs 10
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