Test Failed
Push — master ( bd0a28...ba32c2 )
by Php Easy Api
05:04
created

DeviceToken::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 5
rs 10
c 0
b 0
f 0
1
<?php
2
namespace Resta\Authenticate\Driver\Eloquent;
3
4
use Illuminate\Database\Eloquent\Model as Eloquent;
5
6
class DeviceToken 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('authenticateDeviceTokenTable');
17
    }
18
}
19