/home/mip/mip/vendor/unisharp/laravel-filemanager/src/Events/ImageIsResizing.php
<?php

namespace UniSharp\LaravelFilemanager\Events;

class ImageIsResizing
{
    private $path;

    public function __construct($path)
    {
        $this->path = $path;
    }

    /**
     * @return string
     */
    public function path()
    {
        return $this->path;
    }
}