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

File "FileEntriesMoved.php"

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

<?php

namespace Common\Files\Events;

class FileEntriesMoved
{
    /**
     * @var array
     */
    public $entryIds;

    /**
     * @var null|integer
     */
    public $destination;

    /**
     * @var int|null
     */
    public $source;

    /**
     * @param array $entryIds
     * @param null|int $destination
     * @param null|int $source
     */
    public function __construct($entryIds, $destination, $source)
    {
        $this->entryIds = $entryIds;
        $this->destination = $destination;
        $this->source = $source;
    }
}