Skip to content

Commit 084eb2b

Browse files
committed
bug #12149 [Messenger] Fix NewOrdersFromCsvFileReceiver::get() return type (nclsHart)
This PR was merged into the 4.3 branch. Discussion ---------- [Messenger] Fix NewOrdersFromCsvFileReceiver::get() return type <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- 4033697 [Messenger] Fix NewOrdersFromCsvFileReceiver::get return type
2 parents de4a36e + 4033697 commit 084eb2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/messenger.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ do is to write your own CSV receiver::
282282
$this->filePath = $filePath;
283283
}
284284

285-
public function get(): void
285+
public function get(): iterable
286286
{
287287
$ordersFromCsv = $this->serializer->deserialize(file_get_contents($this->filePath), 'csv');
288288

0 commit comments

Comments
 (0)