Passed
Push — master ( a6828c...85a041 )
by Carl
03:19
created

PayOut   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 0
loc 12
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A create() 0 4 1
A get() 0 4 1
1
<?php
2
/**
3
 * Created by Carl Owens ([email protected])
4
 * Company: PartFire Ltd (www.partfire.co.uk)
5
 * Copyright © 2017 PartFire Ltd. All rights reserved.
6
 *
7
 * User:    Carl Owens
8
 * Date:    19/01/2017
9
 * Time:    23:21
10
 * File:    PayOut.php
11
 **/
12
13
namespace PartFire\MangoPayBundle\Services;
14
15
16
class PayOut
17
{
18
    public function create()
19
    {
20
21
    }
22
23
    public function get()
24
    {
25
26
    }
27
}
28