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