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

ResMeta   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 30
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
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