We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a15d40 commit dc92187Copy full SHA for dc92187
composer.json
@@ -34,7 +34,7 @@
34
},
35
"extra": {
36
"branch-alias": {
37
- "dev-master": "13.52-dev"
+ "dev-master": "13.53-dev"
38
39
"laravel": {
40
"providers": [
src/Interfaces/RabbitMQBatchable.php
@@ -0,0 +1,14 @@
1
+<?php
2
+
3
+namespace VladimirYuldashev\LaravelQueueRabbitMQ\Interfaces;
4
5
+interface RabbitMQBatchable
6
+{
7
+ /**
8
+ * Processing jobs array of static class
9
+ *
10
+ * @param array<static> $batch
11
+ * @return mixed
12
+ */
13
+ public static function collection(array $batch): void;
14
+}
0 commit comments