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