aboutsummaryrefslogtreecommitdiff
path: root/app/views/javascript/nbUnreadsPerFeed.phtml
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2023-05-11 12:53:32 +0200
committerGravatar GitHub <noreply@github.com> 2023-05-11 12:53:32 +0200
commitfe7d9bbcd68660a59b813346c236b61b25a51c80 (patch)
tree95be837c2838659a3ea72974c9f9b18b1ee634ca /app/views/javascript/nbUnreadsPerFeed.phtml
parent2343f0ded14ac6970575c23e4de34e536241b623 (diff)
Typed view model classes (#5380)
* Typed view model classes * Add ability to provide a typed view model class to a controller * Use `::class` instead of string for referring to classes * Examplified with `stats` and `javascript` controllers / views (more to do) * Also useful for extensions (my usecase today), which did not have the ability to define own view model attributes before. * Typo
Diffstat (limited to 'app/views/javascript/nbUnreadsPerFeed.phtml')
-rw-r--r--app/views/javascript/nbUnreadsPerFeed.phtml3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/javascript/nbUnreadsPerFeed.phtml b/app/views/javascript/nbUnreadsPerFeed.phtml
index 261f2a179..4864b429a 100644
--- a/app/views/javascript/nbUnreadsPerFeed.phtml
+++ b/app/views/javascript/nbUnreadsPerFeed.phtml
@@ -1,5 +1,6 @@
-<?php /** @var FreshRSS_View $this */ ?>
<?php
+/** @var FreshRSS_ViewJavascript $this */
+
$result = array(
'feeds' => array(),
'tags' => array(),