Blame view

app/Events/Event.php 127 Bytes
e77200db5   nologostudio.ru   Initial commit
1
2
3
4
5
6
7
8
9
10
  <?php
  
  namespace FootyRoom\Events;
  
  use Illuminate\Queue\SerializesModels;
  
  abstract class Event
  {
      use SerializesModels;
  }