Passed
Push — master ( b94297...d3f672 )
by Carl
07:13
created

PayIn   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 7
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A createCardDirectPayIn() 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:    12:18
10
 * File:    PayIn.php
11
 **/
12
13
namespace PartFire\MangoPayBundle\Services;
14
15
16
use PartFire\MangoPayBundle\Models\DTOs\CardDirectPayIn;
17
18
class PayIn
19
{
20
    public function createCardDirectPayIn(CardDirectPayIn $cardDirectPayInDto)
0 ignored issues
show
Unused Code introduced by
The parameter $cardDirectPayInDto is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
21
    {
22
23
    }
24
}
25