| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class CodeCount extends Controller |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Anzahl codes in DB hinterlegen. |
||
| 12 | * |
||
| 13 | * @param $codeCount |
||
| 14 | * |
||
| 15 | * @return int |
||
| 16 | */ |
||
| 17 | public static function setCodeCount($codeCount) |
||
| 18 | { |
||
| 19 | DB::table('game_admin')->insert(['code_count' => $codeCount]); |
||
| 20 | |||
| 21 | return intval($codeCount); |
||
| 22 | } |
||
| 23 | |||
| 24 | public static function getCodeCount(){ |
||
| 28 | } |
||
| 29 | } |
||
| 30 |