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

PayIn::createCardDirectPayIn()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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