mein-sterntours/packages/iqcontent/laravel-filemanager/src/Events/ImageIsDeleting.php
2019-10-02 20:03:55 +02:00

21 lines
287 B
PHP

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