DummySession 준비

This commit is contained in:
2020-12-26 15:48:05 +09:00
parent cb589e9e26
commit d5f71b5878
4 changed files with 281 additions and 3 deletions
+11
View File
@@ -132,4 +132,15 @@ class Setting
}
return true;
}
public function getDetailStatus()
{
if(!$this->isRunning()){
return [
'game'=>null,
'me'=>null
];
}
throw new NotImplementedException();
}
}