Test Failed
Push — master ( f1782b...fc1ea0 )
by Php Easy Api
03:58
created

User   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
namespace Resta\Authenticate\Driver\Eloquent;
3
4
use Illuminate\Database\Eloquent\Model as Eloquent;
5
6
class User extends Eloquent
7
{
8
    /**
9
     * User constructor.
10
     * @param array $attributes
11
     */
12
    public function __construct(array $attributes = [])
13
    {
14
        parent::__construct($attributes);
15
16
        $this->table = app()->get('authenticateTable');
17
    }
18
}
19