1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-10-05 19:31:02 +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

@ -17,8 +17,8 @@ class CleanDownloadedImagesCommand extends Command
protected static $defaultDescription = 'Cleans downloaded images which are no more associated to an entry';
public function __construct(
private EntryRepository $entryRepository,
private DownloadImages $downloadImages,
private readonly EntryRepository $entryRepository,
private readonly DownloadImages $downloadImages,
) {
parent::__construct();
}