<?php
namespace UniSharp\LaravelFilemanager\Events;
class FolderIsDeleting
{
private $path;
public function __construct($path)
{
$this->path = $path;
}
/**
* @return string
*/
public function path()
{
return $this->path;
}
}