Completed
Push — 1.x ( 7bb0ba...d6f2bd )
by Akihito
14s queued 12s
created

ResMeta::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 3
1
<?php
2
3
declare(strict_types=1);
4
5
6
namespace BEAR\AppMeta;
7
8
final class ResMeta
9
{
10
    /**
11
     * URI path
12
     *
13
     * @var string
14
     */
15
    public $uriPath;
16
17
    /**
18
     * Class name
19
     *
20
     * @var string
21
     */
22
    public $class;
23
24
    /**
25
     * File path
26
     *
27
     * @var string
28
     */
29
    public $filePath;
30
31
    public function __construct(string $uriPath, string $class, string $filePath)
32
    {
33
        $this->uriPath = $uriPath;
34
        $this->class = $class;
35
        $this->filePath = $filePath;
36
    }
37
}
38