aboutsummaryrefslogtreecommitdiff
path: root/app/Models/ReadingMode.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Models/ReadingMode.php')
-rw-r--r--app/Models/ReadingMode.php22
1 files changed, 5 insertions, 17 deletions
diff --git a/app/Models/ReadingMode.php b/app/Models/ReadingMode.php
index c0fa95b31..51ff26fd5 100644
--- a/app/Models/ReadingMode.php
+++ b/app/Models/ReadingMode.php
@@ -5,24 +5,12 @@
*/
class FreshRSS_ReadingMode {
- /**
- * @var string
- */
- protected $id;
- /**
- * @var string
- */
- protected $name;
- /**
- * @var string
- */
- protected $title;
+ protected string $id;
+ protected string $name;
+ protected string $title;
/** @var array{'c':string,'a':string,'params':array<string,mixed>} */
- protected $urlParams;
- /**
- * @var bool
- */
- protected $isActive = false;
+ protected array $urlParams;
+ protected bool $isActive = false;
/**
* ReadingMode constructor.