From 8b5b9e2c65193171a12bf99a8df860a66e6900a5 Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Wed, 6 Nov 2019 13:43:57 +0100 Subject: src/: Formatting, doc block hints and cleanup --- src/Models/LogEntry.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'src/Models/LogEntry.php') diff --git a/src/Models/LogEntry.php b/src/Models/LogEntry.php index db427eb9..53f72b65 100644 --- a/src/Models/LogEntry.php +++ b/src/Models/LogEntry.php @@ -2,19 +2,21 @@ namespace Engelsystem\Models; +use Carbon\Carbon; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Collection; +use Illuminate\Database\Query\Builder as QueryBuilder; /** - * @property int $id - * @property string $level - * @property string $message - * @property \Carbon\Carbon|null $created_at + * @property int $id + * @property string $level + * @property string $message + * @property Carbon|null $created_at * - * @method static \Illuminate\Database\Query\Builder|\Engelsystem\Models\LogEntry[] whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Engelsystem\Models\LogEntry[] whereLevel($value) - * @method static \Illuminate\Database\Query\Builder|\Engelsystem\Models\LogEntry[] whereMessage($value) - * @method static \Illuminate\Database\Query\Builder|\Engelsystem\Models\LogEntry[] whereCreatedAt($value) + * @method static QueryBuilder|LogEntry[] whereId($value) + * @method static QueryBuilder|LogEntry[] whereLevel($value) + * @method static QueryBuilder|LogEntry[] whereMessage($value) + * @method static QueryBuilder|LogEntry[] whereCreatedAt($value) */ class LogEntry extends BaseModel { -- cgit v1.2.3-54-g00ecf