Skip to content

Commit 6fb71be

Browse files
committed
WIP
1 parent 774ec5e commit 6fb71be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/Jobs/GenerateSocialShareImage.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace App\Jobs;
44

55
use App\Models\Article;
6+
use Illuminate\Http\Response;
67
use Intervention\Image\Drivers\Gd\Driver;
78
use Intervention\Image\ImageManager;
89

@@ -24,7 +25,7 @@ final class GenerateSocialShareImage
2425

2526
public function __construct(private Article $article) {}
2627

27-
public function handle(): mixed
28+
public function handle(): Response
2829
{
2930
$image = new ImageManager(new Driver);
3031
$text = wordwrap($this->article->title(), self::CHARACTERS_PER_LINE);

0 commit comments

Comments
 (0)