RouteViewer::all()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
ccs 0
cts 0
cp 0
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Arcanedev\RouteViewer\Contracts;
6
7
/**
8
 * Interface  RouteViewer
9
 *
10
 * @author    ARCANEDEV <[email protected]>
11
 */
12
interface RouteViewer
13
{
14
    /* -----------------------------------------------------------------
15
     |  Main Methods
16
     | -----------------------------------------------------------------
17
     */
18
19
    /**
20
     * Get all routes.
21
     *
22
     * @return \Arcanedev\RouteViewer\Entities\RouteCollection
23
     */
24
    public function all();
25
}
26