1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

Migrate to readonly properties

This commit is contained in:
Yassine Guedidi 2025-04-05 13:59:36 +02:00
parent a107773c11
commit ca018c77e3
71 changed files with 203 additions and 199 deletions

View file

@ -31,10 +31,10 @@ class EntriesExport
* @param TokenStorageInterface $tokenStorage Needed to retrieve the current user
*/
public function __construct(
private TranslatorInterface $translator,
private readonly TranslatorInterface $translator,
private $wallabagUrl,
private $logoPath,
private TokenStorageInterface $tokenStorage,
private readonly TokenStorageInterface $tokenStorage,
) {
}