Test Failed
Pull Request — master (#4)
by
unknown
03:07
created

SoftDeletes::getQualifiedDeletedAtColumn()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: admin
5
 * Date: 02.03.2018
6
 * Time: 16:43
7
 */
8
9
namespace sonrac\Arango\Eloquent;
10
11
use Illuminate\Database\Eloquent\SoftDeletes as BaseSoftDeletes;
12
13
trait SoftDeletes
14
{
15
    use BaseSoftDeletes;
16
17
    /**
18
     * Return column without collection name (collection not use in AQL query)
19
     * @return string
20
     */
21
    public function getQualifiedDeletedAtColumn()
22
    {
23
        return $this->getDeletedAtColumn();
24
    }
25
}