Total Complexity | 6 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Roll extends Roulette { |
||
12 | |||
13 | private static $items; |
||
14 | private static $return; |
||
|
|||
15 | |||
16 | public static function put($items) |
||
21 | } |
||
22 | public static function spin() |
||
25 | } |
||
26 | public static function dropUp($items, $rate) |
||
27 | { |
||
28 | $items_bucket = self::$items; |
||
29 | self::putDropUp(self::itemDropUp($items_bucket, $items, $rate)); |
||
30 | return new static(); |
||
31 | } |
||
32 | private static function getItem() { |
||
36 | } |
||
37 | private static function putDropUp($arr){ |
||
44 | } |