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