update 1.0.8.0
Commits for version update
This commit is contained in:
22
vendor/unisharp/laravel-filemanager/src/Events/ImageWasDeleted.php
vendored
Normal file
22
vendor/unisharp/laravel-filemanager/src/Events/ImageWasDeleted.php
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace Unisharp\Laravelfilemanager\Events;
|
||||
|
||||
class ImageWasDeleted
|
||||
{
|
||||
private $path;
|
||||
|
||||
public function __construct($path)
|
||||
{
|
||||
$this->path = $path;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function path()
|
||||
{
|
||||
return $this->path;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user