| 1 | <?php namespace Modules\Media\Events; |
||
| 5 | class FileWasLinked |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var File |
||
| 9 | */ |
||
| 10 | public $file; |
||
| 11 | /** |
||
| 12 | * The entity that was linked to a file |
||
| 13 | * @var object |
||
| 14 | */ |
||
| 15 | public $entity; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param File $file |
||
| 19 | * @param object $entity |
||
| 20 | */ |
||
| 21 | public function __construct(File $file, $entity) |
||
| 26 | } |
||
| 27 |