1
0
Fork 0
mirror of synced 2024-06-29 03:30:34 +12:00

Fixed default session value

This commit is contained in:
Eldad Fux 2020-11-20 23:02:42 +02:00
parent c3d398d2e3
commit 7a444d5a24

View file

@ -114,7 +114,7 @@ class Session extends Model
->addRule('current', [
'type' => self::TYPE_BOOLEAN,
'description' => 'Returns true if this the current user session.',
'default' => '',
'default' => false,
'example' => true,
])
;