Update composer dependencies

This commit is contained in:
Jonny Barnes 2023-12-06 20:11:41 +00:00
parent 58c179bef2
commit 3c0c375fbb
Signed by: jonny
SSH key fingerprint: SHA256:CTuSlns5U7qlD9jqHvtnVmfYV3Zwl2Z7WnJ4/dqOaL8
11 changed files with 127 additions and 122 deletions

View file

@ -8,7 +8,7 @@ use App\Models\Article;
class ArticleService extends Service
{
public function create(array $request, string $client = null): Article
public function create(array $request, ?string $client = null): Article
{
return Article::create([
'title' => $this->getDataByKey($request, 'name'),