Fix newfilename calculation

This commit is contained in:
Deon George
2020-01-05 09:37:50 +11:00
parent 1ffc2d994e
commit 9c0a02c425
4 changed files with 26 additions and 10 deletions

View File

@@ -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;
}
/**