19 lines
262 B
PHP
Executable File
19 lines
262 B
PHP
Executable File
<?php
|
|
|
|
namespace Common\Files\Events;
|
|
|
|
use Common\Files\FileEntry;
|
|
|
|
class FileEntryCreated
|
|
{
|
|
/**
|
|
* @var FileEntry
|
|
*/
|
|
public $fileEntry;
|
|
|
|
public function __construct(FileEntry $fileEntry)
|
|
{
|
|
$this->fileEntry = $fileEntry;
|
|
}
|
|
}
|