3cf19d8656
This pull request applies code style fixes from an analysis carried out by [StyleCI](https://github.styleci.io). --- For more information, click [here](https://github.styleci.io/analyses/8wKwbZ).
22 lines
326 B
PHP
22 lines
326 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use Illuminate\Http\UploadedFile;
|
|
|
|
class HashingFile extends Event
|
|
{
|
|
public $file;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param UploadedFile $file
|
|
* @return void
|
|
*/
|
|
public function __construct(UploadedFile $file)
|
|
{
|
|
$this->file = $file;
|
|
}
|
|
}
|