Skip to content

Commit

Permalink
Loaders: MultiLoader - processes loaders in non-reverse order
Browse files Browse the repository at this point in the history
  • Loading branch information
janpecha committed Jan 4, 2024
1 parent 49362fb commit 67766d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Loaders/MultiLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class MultiLoader implements MessageLoader
*/
public function __construct(array $loaders)
{
$this->loaders = array_reverse($loaders);
$this->loaders = $loaders;
}


Expand Down

0 comments on commit 67766d9

Please sign in to comment.