summaryrefslogtreecommitdiff
path: root/src/Models/LogEntry.php
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-10-28 16:54:15 +0100
committermsquare <msquare@notrademark.de>2018-12-02 12:53:31 +0100
commit720b46f60f1033bc2249b846363f883fa3644ab8 (patch)
treeee42e09d96cc27758fb9c1d304c74eb2b42d7d93 /src/Models/LogEntry.php
parent8a9031fa01d2dedb235faa9a17de5a5907459e17 (diff)
Models: Added DocBlocks
Diffstat (limited to 'src/Models/LogEntry.php')
-rw-r--r--src/Models/LogEntry.php11
1 files changed, 11 insertions, 0 deletions
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 */