Test
This commit is contained in:
parent
e94b51d714
commit
a25a9ec0db
2 changed files with 2 additions and 3 deletions
|
@ -47,7 +47,7 @@ class PublicController extends BaseController
|
|||
if(!array_key_exists($sizeName, $this->size)) {
|
||||
abort(400, "Size not exists");
|
||||
}
|
||||
$size = $this->size[$sizeName];
|
||||
$size = (int)$this->size[$sizeName];
|
||||
|
||||
$image = Image::query()->where("id", "=", $image_id)->firstOrFail();
|
||||
$gallery = Gallery::query()->where("url", "=", $gallery_url)->firstOrFail();
|
||||
|
@ -70,7 +70,6 @@ class PublicController extends BaseController
|
|||
|
||||
|
||||
//Return from s3, takes a loooong time
|
||||
var_dump((integer)$image->id);exit();
|
||||
$resizeJob = new ResizeImage((integer)$image->id, $size);
|
||||
ResizeImage::dispatchSync($resizeJob);
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ class ResizeImage implements ShouldQueue
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct(int $image_id, int $size)
|
||||
public function __construct($image_id, $size)
|
||||
{
|
||||
$this->image_id = $image_id;
|
||||
$this->size = $size;
|
||||
|
|
Loading…
Reference in a new issue