We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83c3d69 commit 5e6f132Copy full SHA for 5e6f132
tests/GameTest.php
@@ -345,12 +345,13 @@ public function testIfActionsAreAddedAsExpected()
345
], $viewpointToArray($v3));
346
}
347
348
- public function testCorrectVersioning(){
+ public function testCorrectVersioning()
349
+ {
350
try {
- $version=new version(Game::getVersion());
351
+ $version = new version(Game::getVersion());
352
$this->assertTrue(true);
353
} catch(\RuntimeException $e) {
- $this->fail(sprintf("Version failed SemVer check with error: %s",$e->getMessage()));
354
+ $this->fail(sprintf("Version failed SemVer check with error: %s", $e->getMessage()));
355
356
357
0 commit comments