1 | <?php |
||
15 | class RouteRedirected |
||
16 | { |
||
17 | /* ----------------------------------------------------------------- |
||
18 | | Properties |
||
19 | | ----------------------------------------------------------------- |
||
20 | */ |
||
21 | |||
22 | /** @var \Arcanedev\MissingUrlsRedirector\Entities\Redirection */ |
||
23 | public $redirection; |
||
24 | |||
25 | /* ----------------------------------------------------------------- |
||
26 | | Constructor |
||
27 | | ----------------------------------------------------------------- |
||
28 | */ |
||
29 | |||
30 | /** |
||
31 | * RouteRedirected constructor. |
||
32 | * |
||
33 | * @param \Arcanedev\MissingUrlsRedirector\Entities\Redirection $redirection |
||
34 | */ |
||
35 | 60 | public function __construct(Redirection $redirection) |
|
39 | } |
||
40 |