Side   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A toArray() 0 7 1
1
<?php
2
3
namespace Betfair\Model;
4
5
abstract class Side implements ArrayableInterface
6
{
7
    const LAY = "LAY";
8
    const BACK = "BACK";
9
10
    public static function toArray()
11
    {
12
        return array(
13
            self::LAY,
14
            self::BACK
15
        );
16
    }
17
}
18