[core] Drop php 5.6 and php 7.0 support (#2224)

This commit is contained in:
Eugene Molotov 2021-12-03 04:12:16 +05:00 committed by GitHub
parent ae6a3227b0
commit 071fdef599
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 220 additions and 264 deletions

View file

@ -32,7 +32,7 @@ class ListActionTest extends TestCase {
$this->assertNotNull($items, 'invalid JSON output: ' . json_last_error_msg());
$this->assertArrayHasKey('total', $items, 'Missing "total" parameter');
$this->assertInternalType('int', $items['total'], 'Invalid type');
$this->assertIsInt($items['total'], 'Invalid type');
$this->assertArrayHasKey('bridges', $items, 'Missing "bridges" array');