Skip to content

Commit 586005f

Browse files
Merge branch '7.3' into 7.4
* 7.3: Fix remaining SplObjectStorage deprecation Remove calls to no-op functions, deprecated in PHP 8.5 Remove deprecated calls to deprecated methods of SplObjectStorage [Messenger] Show package installation hint also for amqps [TypeInfo] Fix converting list to string
2 parents b808065 + 32a6d08 commit 586005f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Extension/WorkflowExtensionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ protected function setUp(): void
3636
];
3737

3838
$transitionsMetadata = new \SplObjectStorage();
39-
$transitionsMetadata->attach($this->t1, ['title' => 't1 title']);
39+
$transitionsMetadata[$this->t1] = ['title' => 't1 title'];
4040
$metadataStore = new InMemoryMetadataStore(
4141
['title' => 'workflow title'],
4242
['orderer' => ['title' => 'ordered title']],

0 commit comments

Comments
 (0)