Completed
Push — master ( 91f8d9...64265e )
by Mohamed
09:45 queued 06:57
created

RelationTrait   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 3
Bugs 0 Features 0
Metric Value
wmc 2
c 3
b 0
f 0
lcom 0
cbo 0
dl 0
loc 22
ccs 0
cts 4
cp 0
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A user() 0 4 1
A project() 0 4 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\Project\User;
13
14
use Illuminate\Database\Eloquent\Relations;
15
16
/**
17
 * RelationTrait is trait class containing the relationship methods for the Project\User model.
18
 *
19
 * @author Mohamed Alsharaf <[email protected]>
20
 *
21
 * @method Relations\BelongsTo belongsTo($related, $foreignKey = null, $otherKey = null, $relation = null)
22
 */
23
trait RelationTrait
24
{
25
    /**
26
     * Returns the instance of the user in the project.
27
     *
28
     * @return Relations\BelongsTo
29
     */
30
    public function user()
31
    {
32
        return $this->belongsTo('User', 'user_id')->orderBy('firstname', 'ASC');
33
    }
34
35
    /**
36
     * Returns the instance of the project.
37
     *
38
     * @return Relations\BelongsTo
39
     */
40
    public function project()
41
    {
42
        return $this->belongsTo('Tinyissue\Model\Project', 'project_id')->orderBy('name', 'ASC');
43
    }
44
}
45