Fix some Laravel Pint issues

This commit is contained in:
Jonny Barnes 2023-02-18 09:53:57 +00:00
parent 16b120bc73
commit 9743ba8eed
Signed by: jonny
SSH key fingerprint: SHA256:CTuSlns5U7qlD9jqHvtnVmfYV3Zwl2Z7WnJ4/dqOaL8
5 changed files with 4 additions and 5 deletions

View file

@ -36,7 +36,7 @@ class Article extends Model
];
/** @var array<string, string> */
protected $casts = [
protected $casts = [
'created_at' => 'datetime',
'updated_at' => 'datetime',
'deleted_at' => 'datetime',

View file

@ -6,7 +6,6 @@ namespace App\Models;
use App\CommonMark\Generators\ContactMentionGenerator;
use App\CommonMark\Renderers\ContactMentionRenderer;
use App\Exceptions\TwitterContentException;
use Codebird\Codebird;
use Exception;
use GuzzleHttp\Client;