Completed
Push — master ( c08bd1...f8165d )
by Faysal
01:16
created

LaravelAdmin::prefix()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Devfaysal\LaravelAdmin;
4
5
class LaravelAdmin
6
{
7
    /**
8
     * Get the URI prefix utilized by LaravelAdmin.
9
     *
10
     * @return string
11
     */
12
    public static function prefix()
13
    {
14
        return config('laravel-admin.prefix', '/admin');
15
    }
16
}
17