Completed
Push — develop ( 16b0aa...b50cad )
by Lucas Pires
05:45
created

Bitbucket   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A createIssue() 0 4 1
1
<?php
2
3
namespace FlyingLuscas\Laker\Services;
4
5
use FlyingLuscas\Laker\Issue;
6
use FlyingLuscas\Laker\Contracts\ServiceContract;
7
8
class Bitbucket implements ServiceContract
9
{
10
    /**
11
     * Create a new issue on bitbucket.
12
     *
13
     * @param \FlyingLuscas\Laker\Issue $issue
14
     *
15
     * @return bool
16
     */
17
    public function createIssue(Issue $issue)
18
    {
19
        //
20
    }
21
}
22