PrefixRule
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 4
dl 0
loc 14
c 0
b 0
f 0
1
<?php
2
3
namespace Bavix\Router\Rules;
4
5
use Bavix\Router\Resolable;
6
use Bavix\Router\Rule;
7
8
class PrefixRule extends Rule
9
{
10
11
    use Resolable;
12
13
    /**
14
     * @var string
15
     */
16
    protected $protocol;
17
18
    /**
19
     * @var string
20
     */
21
    protected $host;
22
23
}
24