| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class Roll extends Roulete { |
||
| 11 | |||
| 12 | private static $items; |
||
| 13 | private static $return; |
||
|
|
|||
| 14 | |||
| 15 | public static function put($items) |
||
| 16 | { |
||
| 17 | self::$items = $items; |
||
| 18 | |||
| 19 | return new static(); |
||
| 20 | } |
||
| 21 | public static function spin() |
||
| 22 | { |
||
| 23 | return self::getItem(); |
||
| 24 | } |
||
| 25 | private static function getItem(){ |
||
| 29 | } |
||
| 30 | } |