for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanesoft\Media\Events;
/**
* Class FileDeleted
*
* @package Arcanesoft\Media\Events
* @author ARCANEDEV <[email protected]>
*/
class FileDeleted
{
/* -----------------------------------------------------------------
| Properties
| -----------------------------------------------------------------
/** @var string */
public $path;
/** @var bool */
public $deleted;
| Constructor
* FileDeleted constructor.
* @param string $path
* @param bool $deleted
public function __construct($path, $deleted)
$this->path = $path;
$this->deleted = $deleted;
}