JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "WorkspaceDeleted.php"

Full Path: /home/markqprx/iniasli.pro/Events/WorkspaceDeleted.php
File size: 537 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Common\Workspaces\Events;

use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;

class WorkspaceDeleted
{
    use Dispatchable, InteractsWithSockets, SerializesModels;

    /**
     * @var int
     */
    public $workspaceId;

    /**
     * @var int
     */
    public $ownerId;

    public function __construct(int $workspaceId, int $ownerId)
    {
        $this->workspaceId = $workspaceId;
        $this->ownerId = $ownerId;
    }
}