FreshRSS-Extensions/xExtension-ReadingTime/extension.php
Alexandre Alapetite b49596818c
Add PHPStan and other quality checks
Similar to FreshRSS core
Contributes to https://github.com/FreshRSS/Extensions/issues/184
2023-11-23 22:41:09 +01:00

9 lines
192 B
PHP

<?php
declare(strict_types=1);
class ReadingTimeExtension extends Minz_Extension {
public function init(): void {
Minz_View::appendScript($this->getFileUrl('readingtime.js', 'js'));
}
}