Files
faveo/vendor/unisharp/laravel-filemanager/src/Events/ImageWasDeleted.php
2025-08-02 23:14:28 +07:00

22 lines
286 B
PHP

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