diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2018-10-28 16:54:15 +0100 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2018-12-02 12:53:31 +0100 |
commit | 720b46f60f1033bc2249b846363f883fa3644ab8 (patch) | |
tree | ee42e09d96cc27758fb9c1d304c74eb2b42d7d93 /src/Models/EventConfig.php | |
parent | 8a9031fa01d2dedb235faa9a17de5a5907459e17 (diff) |
Models: Added DocBlocks
Diffstat (limited to 'src/Models/EventConfig.php')
-rw-r--r-- | src/Models/EventConfig.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Models/EventConfig.php b/src/Models/EventConfig.php index e2f832cb..576a8f0e 100644 --- a/src/Models/EventConfig.php +++ b/src/Models/EventConfig.php @@ -4,6 +4,17 @@ namespace Engelsystem\Models; use Carbon\Carbon; +/** + * @property string $name + * @property string $value + * @property \Carbon\Carbon $created_at + * @property \Carbon\Carbon $updated_at + * + * @method static \Illuminate\Database\Query\Builder|\Engelsystem\Models\EventConfig[] whereName($value) + * @method static \Illuminate\Database\Query\Builder|\Engelsystem\Models\EventConfig[] whereValue($value) + * @method static \Illuminate\Database\Query\Builder|\Engelsystem\Models\EventConfig[] whereCreatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\Engelsystem\Models\EventConfig[] whereUpdatedAt($value) + */ class EventConfig extends BaseModel { /** @var string The primary key for the model */ |