Skip to content

Commit

Permalink
Fix deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamVyborny committed May 14, 2024
1 parent fba3a1f commit 428f0ca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "2"
services:
# for development purposes
dev:
Expand Down
5 changes: 3 additions & 2 deletions phpstan.neon
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
parameters:
checkMissingIterableValueType: false
ignoreErrors:
- '#Argument of an invalid type mixed supplied for foreach, only iterables are supported.#'
-
identifier: missingType.iterableValue
- '#Argument of an invalid type mixed supplied for foreach, only iterables are supported.#'
2 changes: 1 addition & 1 deletion tests/Manifest/ManifestManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ public function testLoadNewDataTypesTableManifestAsObject(): void
'another.arbitrary.key' => 'Another value',
]);

$this->assertEqualsCanonicalizing(
$this->assertEquals(
$expectedManifest,
$manager->getTableManifest('newDataTypes', true),
);
Expand Down

0 comments on commit 428f0ca

Please sign in to comment.