| 1 | <?php | ||
| 6 | class ConversationWasLockedEvent | ||
| 7 | { | ||
| 8 | /** | ||
| 9 | * The conversation instance. | ||
| 10 | * | ||
| 11 | * @var \Xetaravel\Models\DiscussConversation | ||
| 12 | */ | ||
| 13 | public $conversation; | ||
| 14 | |||
| 15 | /** | ||
| 16 | * Create a new event instance. | ||
| 17 | * | ||
| 18 | * @param \Xetaravel\Models\DiscussConversation $conversation | ||
| 19 | */ | ||
| 20 | public function __construct(DiscussConversation $conversation) | ||
| 24 | } | ||
| 25 |