| Conditions | 3 |
| Paths | 4 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 48 | public function send() |
||
| 49 | { |
||
| 50 | $response = collect(); |
||
| 51 | foreach ($this->recipients as $recipient) { |
||
| 52 | $response->put( |
||
| 53 | $recipient, |
||
| 54 | $this->client->publish($this->payload($recipient)) |
||
| 55 | ); |
||
| 56 | } |
||
| 57 | |||
| 58 | return (count($this->recipients) == 1) ? $response->first() : $response; |
||
| 59 | } |
||
| 60 | |||
| 83 |
This method has been deprecated.