Ejemplo n.º 1
0
 /**
  * Create a new job instance.
  *
  * @param Album $album
  */
 public function __construct(Album $album)
 {
     $this->album = $album;
     parent::__construct();
 }
Ejemplo n.º 2
0
 /**
  * Create a new job instance.
  *
  * @param string $path
  */
 public function __construct($path)
 {
     $this->path = $path;
     parent::__construct();
 }
Ejemplo n.º 3
0
 /**
  * Create a new job instance.
  *
  * @param ImageFile $imageFile
  */
 public function __construct(ImageFile $imageFile)
 {
     $this->imageFile = $imageFile;
     parent::__construct();
 }
Ejemplo n.º 4
0
 /**
  * Create a new job instance.
  *
  * @param string $oldPath
  * @param string $newPath
  */
 public function __construct($oldPath, $newPath)
 {
     $this->oldPath = $oldPath;
     $this->newPath = $newPath;
     parent::__construct();
 }