Archived
1
0
Fork 0

Formatting fixes and cleanup.

This commit is contained in:
Henrik Hautakoski 2023-01-31 07:34:02 +01:00
parent a1e14a3e60
commit 51fb71e469
41 changed files with 394 additions and 392 deletions

View file

@ -20,7 +20,7 @@ class GameService
/**
* Get the current session
*/
public function session() : GameSession
public function session(): GameSession
{
return $this->session;
}
@ -28,7 +28,7 @@ class GameService
/**
* Generate a new Game session
*/
public function newSession(?GameSettings $settings = null) : self
public function newSession(?GameSettings $settings = null): self
{
if (!$settings) {
$settings = $this->session()->getSettings();