| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace App\Events;
- use Illuminate\Broadcasting\Channel;
- use Illuminate\Broadcasting\InteractsWithSockets;
- use Illuminate\Broadcasting\PresenceChannel;
- use Illuminate\Broadcasting\PrivateChannel;
- use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
- use Illuminate\Foundation\Events\Dispatchable;
- use Illuminate\Queue\SerializesModels;
- class GitPushedEvent
- {
- use Dispatchable, InteractsWithSockets, SerializesModels;
- public $email;
- /**
- * [
- * 'title'=>''
- * 'description'='信息'
- * ]
- */
- public $load;
- /**
- * GitPushedEvent constructor.
- * @param $email
- * @param $load
- */
- public function __construct($email, $load)
- {
- $this->email = $email;
- $this->load = $load;
- }
- /**
- * Get the channels the event should broadcast on.
- *
- * @return \Illuminate\Broadcasting\Channel|array
- */
- public function broadcastOn()
- {
- return new PrivateChannel('channel-name');
- }
- }
|