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

RelationTrait::belongsTo()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
dl 0
loc 1
c 1
b 1
f 0
nc 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