Passed
Pull Request — master (#18)
by
unknown
05:36 queued 02:48
created

BrokerUser::getTable()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace Zefy\LaravelSSO\Models;
4
5
use Illuminate\Database\Eloquent\Model;
6
use Illuminate\Database\Eloquent\SoftDeletes;
7
8
class BrokerUser extends Model
9
{
10
    use SoftDeletes;
11
     /**
12
     * Get the table associated with the model.
13
     *
14
     * @return string
15
     */
16
    public function getTable()
17
    {
18
        return config('laravel-sso.brokerUserTable', 'broker_user');
19
    }
20
}
21