#[\Override]

This commit is contained in:
Alexandre Alapetite 2024-04-07 19:58:12 +02:00
parent aed710af88
commit 3e58c2f2b3
No known key found for this signature in database
GPG key ID: A24378C38E812B23
13 changed files with 19 additions and 19 deletions

View file

@ -3,12 +3,12 @@ declare(strict_types=1);
final class TTRSS_APIExtension extends Minz_Extension {
#[Override]
#[\Override]
public function init(): void {
$this->registerHook('post_update', [$this, 'postUpdateHook']);
}
#[Override]
#[\Override]
public function install() {
$filename = 'ttrss.php';
$file_source = join_path($this->getPath(), $filename);
@ -36,7 +36,7 @@ final class TTRSS_APIExtension extends Minz_Extension {
return true;
}
#[Override]
#[\Override]
public function uninstall() {
$filename = 'ttrss.php';
$file_destination = join_path(PUBLIC_PATH, 'api', $filename);