Completed
Branch develop-3.0 (4fe777)
by Mohamed
11:06
created

QueueRelations::belongsTo()

Size

Total Lines 1

Duplication

Lines 1
Ratio 100 %

Importance

Changes 0
Metric Value
dl 1
loc 1
c 0
b 0
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\Message;
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 View Code Duplication
trait QueueRelations
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
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
41
    abstract public function morphTo($name = null, $type = null, $id = null);
42
}
43