This repository has been archived by the owner on Apr 13, 2021. It is now read-only.
forked from jicjjang/June
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Route.php
92 lines (80 loc) · 1.94 KB
/
Route.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?php
namespace Wandu\Router;
use Wandu\Router\Contracts\RouteFluent;
use Wandu\Router\Contracts\RouteInformation;
class Route implements RouteFluent, RouteInformation
{
/** @var string */
protected $className;
/** @var string */
protected $methodName;
/** @var array */
protected $middlewares;
/** @var array */
protected $domains;
/**
* @param string $className
* @param string $methodName
* @param string|array $middlewares
* @param string|array $domains
*/
public function __construct($className, $methodName, $middlewares = [], $domains = [])
{
$this->className = $className;
$this->methodName = $methodName;
$this->middlewares = is_array($middlewares) ? $middlewares : [$middlewares];
$this->domains = is_array($domains) ? $domains : [$domains];
}
/**
* {@inheritdoc}
*/
public function middleware($middlewares, $overwrite = false): RouteFluent
{
if (is_string($middlewares)) {
$middlewares = [$middlewares];
}
$this->middlewares = $overwrite
? $middlewares
: array_merge($this->middlewares, $middlewares);
return $this;
}
/**
* {@inheritdoc}
*/
public function domains($domains = []): RouteFluent
{
if (is_string($domains)) {
$domains = [$domains];
}
$this->domains = $domains;
return $this;
}
/**
* {@inheritdoc}
*/
public function getDomains(): array
{
return $this->domains;
}
/**
* {@inheritdoc}
*/
public function getClassName(): string
{
return $this->className;
}
/**
* {@inheritdoc}
*/
public function getMethodName(): string
{
return $this->methodName;
}
/**
* {@inheritdoc}
*/
public function getMiddlewares(): array
{
return $this->middlewares;
}
}