Completed
Push — master ( 195b94...7a36f1 )
by Mohamed
04:50
created

RelationTrait   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 2
Bugs 1 Features 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 0
loc 21
rs 10
c 2
b 1
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A changeBy() 0 4 1
A model() 0 4 1
belongsTo() 0 1 ?
morphTo() 0 1 ?
1
<?php
2
3
/*
4
 * This file is part of the Tinyissue package.
5
 *
6
 * (c) Mohamed Alsharaf <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Tinyissue\Model\Traits\Message\Queue;
13
14
/**
15
 * RelationTrait is trait class containing the relationship methods for the message queue model.
16
 *
17
 * @author Mohamed Alsharaf <[email protected]>
18
 *
19
 * @property static $this
20
 */
21
trait RelationTrait
22
{
23
    /**
24
     * @return mixed
25
     */
26
    public function changeBy()
27
    {
28
        return $this->belongsTo('\Tinyissue\Model\User', 'change_by_id');
29
    }
30
31
    /**
32
     * @return mixed
33
     */
34
    public function model()
35
    {
36
        return $this->morphTo();
37
    }
38
39
    abstract public function belongsTo($related, $foreignKey = null, $otherKey = null, $relation = null);
40
    abstract public function morphTo($name = null, $type = null, $id = null);
41
}
42