SoftDeletes   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 13
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getQualifiedDeletedAtColumn() 0 4 1
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
}
26