18
common/Files/Events/FileUploaded.php
Executable file
18
common/Files/Events/FileUploaded.php
Executable file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace Common\Files\Events;
|
||||
|
||||
use Common\Files\FileEntry;
|
||||
|
||||
class FileUploaded
|
||||
{
|
||||
/**
|
||||
* @var FileEntry
|
||||
*/
|
||||
public $fileEntry;
|
||||
|
||||
public function __construct(FileEntry $fileEntry)
|
||||
{
|
||||
$this->fileEntry = $fileEntry;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user