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

AttachmentRelations::user()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 4
Ratio 100 %

Importance

Changes 0
Metric Value
dl 4
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
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\Project\Issue;
13
14
use Illuminate\Database\Eloquent\Relations;
15
16
/**
17
 * RelationTrait is trait class containing the relationship methods for the Project\Issue\Attachment model.
18
 *
19
 * @author Mohamed Alsharaf <[email protected]>
20
 *
21
 * @property static $this
22
 */
23 View Code Duplication
trait AttachmentRelations
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...
24
{
25
    /**
26
     * An attachment is belong to one issue  (inverse relationship of Project\Issue::attachments).
27
     *
28
     * @return Relations\BelongsTo
29
     */
30
    public function issue()
31
    {
32
        return $this->belongsTo('Tinyissue\Model\Project\Issue', 'issue_id');
33
    }
34
35
    /**
36
     * An attachment has one user upladed to (inverse relationship of User::attachments).
37
     *
38
     * @return Relations\BelongsTo
39
     */
40
    public function user()
41
    {
42
        return $this->belongsTo('Tinyissue\Model\User', 'uploaded_by');
43
    }
44
45
    /**
46
     * An attachment can belong to a comment (inverse relationship of Comments::attachments).
47
     *
48
     * @return Relations\BelongsTo
49
     */
50
    public function comment()
51
    {
52
        return $this->belongsTo('Tinyissue\Model\Project\Issue\Comment', 'comment_id');
53
    }
54
55
    abstract public function belongsTo($related, $foreignKey = null, $otherKey = null, $relation = null);
56
}
57