Fix newfilename calculation
This commit is contained in:
@@ -14,16 +14,16 @@ class VideoMove extends Job implements ShouldQueue
|
||||
{
|
||||
use InteractsWithQueue,SerializesModels;
|
||||
|
||||
private $video;
|
||||
public $video;
|
||||
|
||||
/**
|
||||
* Create a new job instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct(Video $video)
|
||||
public function __construct(Video $o)
|
||||
{
|
||||
$this->video = $video;
|
||||
$this->video = $o;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user