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