PlaceInstructionFactory::createPlaceInstruction()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 3
1
<?php
2
3
namespace Betfair\Model\PlaceOrders;
4
5
use Betfair\Model\Side;
6
7
class PlaceInstructionFactory
8
{
9
    public $placeInstruction;
10
11
    public function createPlaceInstruction($orderSide, $selectionId, Side $side)
12
    {
13
        $this->placeInstruction = new PlaceInstruction($orderSide, $selectionId, $side);
14
        return $this;
15
    }
16
17
    public function withHandicap($handicap)
0 ignored issues
show
Unused Code introduced by
The parameter $handicap 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...
18
    {
19
20
    }
21
}
22