We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9fa5f5 commit 4166b93Copy full SHA for 4166b93
tests/PlayerTest.php
@@ -8,7 +8,11 @@ public function it_gets_the_steam_level_by_user_id()
8
{
9
$steamLevel = $this->steamClient->player($this->id64)->GetSteamLevel();
10
11
- $this->assertIsInt($steamLevel);
+ if (\method_exists($this, 'assertIsInt')) {
12
+ $this->assertIsInt($steamLevel);
13
+ } else {
14
+ $this->assertInternalType('int', $steamLevel);
15
+ }
16
}
17
18
/** @test */
0 commit comments