zenstruck / messenger-test

Assertions and helpers for testing your symfony/messenger queues.
MIT License
223 stars 15 forks source link

`EnvelopeCollection::first(): Envelope` #3

Closed kbond closed 3 years ago

kbond commented 3 years ago
$collection->first() // first envelope on collection
$collection->first(MyMessage::class) // first envelope on collection that has message of this class
$collection->first(fn(Envelope $e) => true) // first envelope that matches callable