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

Bitbucket::createIssue()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
rs 10
cc 1
eloc 1
nc 1
nop 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