-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add new functions to batch messages #9
base: master
Are you sure you want to change the base?
Conversation
Codecov Report
@@ Coverage Diff @@
## master #9 +/- ##
=======================================
Coverage 100% 100%
Complexity 58 58
=======================================
Files 8 8
Lines 151 149 -2
=======================================
- Hits 151 149 -2
Continue to review full report at Codecov.
|
@@ -95,6 +109,19 @@ public function setQueueOptions(array $queueOptions) : void | |||
} | |||
} | |||
|
|||
/** | |||
* @param string[] $message |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This this type hint correct?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nope :( Should be array[] - I'll fix it 👍 - Just writing some tests around this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah yeah sorry, this one is correct, the parameters for the batch message function wasn't - it should be string[][] $messages
which I've updated :)
No description provided.