// set, increase, reduce関数の引数の順序変更
// 旧バージョン
public function set($player, int $money, string $reason = "none", string $by = "unknown") : bool;
// 新バージョン
public function set($player, int $money, string $by = "unknown", string $reason = "none") : bool;