for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanesoft\Media\Events;
use Illuminate\Http\UploadedFile;
/**
* Class UploadedFileStoring
*
* @package Arcanesoft\Media\Events
* @author ARCANEDEV <[email protected]>
*/
class FileStoring
{
/* -----------------------------------------------------------------
| Properties
| -----------------------------------------------------------------
/** @var \Illuminate\Http\UploadedFile */
public $file;
/** @var string */
public $destination;
/** @var array */
protected $options;
| Constructor
* UploadedFileStoring constructor.
* @param string $destination
* @param \Illuminate\Http\UploadedFile $file
* @param array $options
public function __construct($destination, UploadedFile $file, $options)
$destination
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$this->file = $file;
$this->options = $options;
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.