diff options
Diffstat (limited to 'app/Models/Log.php')
| -rw-r--r-- | app/Models/Log.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/app/Models/Log.php b/app/Models/Log.php index 96714d1c7..c3f4bb244 100644 --- a/app/Models/Log.php +++ b/app/Models/Log.php @@ -3,12 +3,10 @@ declare(strict_types=1); class FreshRSS_Log extends Minz_Model { - /** @var string */ - private $date; - /** @var string */ - private $level; - /** @var string */ - private $information; + + private string $date; + private string $level; + private string $information; public function date(): string { return $this->date; |
