From 720b46f60f1033bc2249b846363f883fa3644ab8 Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Sun, 28 Oct 2018 16:54:15 +0100 Subject: Models: Added DocBlocks --- src/Models/LogEntry.php | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/Models/LogEntry.php') diff --git a/src/Models/LogEntry.php b/src/Models/LogEntry.php index ca9702de..0018841a 100644 --- a/src/Models/LogEntry.php +++ b/src/Models/LogEntry.php @@ -5,6 +5,17 @@ namespace Engelsystem\Models; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Collection; +/** + * @property int $id + * @property string $level + * @property string $message + * @property \Carbon\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) + */ class LogEntry extends BaseModel { /** @var bool enable timestamps for created_at */ -- cgit v1.2.3-54-g00ecf