Skip to content

Commit 3a14b54

Browse files
authored
Merge pull request #414 from norkunas/fix-cs
Fix CS
2 parents 1311679 + 71f6bea commit 3a14b54

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@
5050
"symfony/framework-bundle": "^5.4.17 || ^6.0 || ^7.0",
5151
"symfony/http-client": "^5.4.47 || ^6.4.15 || ^7.1.8",
5252
"symfony/phpunit-bridge": "^7.3",
53-
"symfony/yaml": "^5.4 || ^6.0 || ^7.0"
53+
"symfony/yaml": "^5.4 || ^6.0 || ^7.0",
54+
"symfony/var-exporter": "^5.4 || ^6.0 || ^7.0"
5455
},
5556
"autoload": {
5657
"psr-4": {

tests/Entity/ObjectId/DummyObjectId.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Meilisearch\Bundle\Tests\Entity\ObjectId;
66

7-
final class DummyObjectId
7+
final class DummyObjectId implements \Stringable
88
{
99
private int $id;
1010

tests/baseline-ignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@
1616
%Return type of Doctrine\\Common\\Collections\\(ArrayCollection|AbstractLazyCollection)::count\(\) should either be compatible with Countable::count\(\): int, or the \#\[\\ReturnTypeWillChange\] attribute should be used to temporarily suppress the notice%
1717
%Return type of Doctrine\\Common\\Collections\\(ArrayCollection|AbstractLazyCollection)::getIterator\(\) should either be compatible with IteratorAggregate::getIterator\(\): Traversable, or the \#\[\\ReturnTypeWillChange\] attribute should be used to temporarily suppress the notice%
1818
%Return type of Doctrine\\Common\\Collections\\(ArrayCollection|AbstractLazyCollection)::(offsetExists|offsetGet|offsetSet|offsetUnset)\(\$offset.*\) should either be compatible with ArrayAccess::(offsetExists|offsetGet|offsetSet|offsetUnset)\(mixed \$offset.*\): .+, or the \#\[\\ReturnTypeWillChange\] attribute should be used to temporarily suppress the notice%
19+
%Since doctrine/doctrine-bundle 3.1: The "auto_mapping" option is deprecated and will be removed in DoctrineBundle 4.0, as it only accepts `false` since 3.0.%

0 commit comments

Comments
 (0)