Files
FreshRSS/app/Exceptions/ZipException.php
Luc SANCHEZ 15745d42b7 Upgrade code to php 8.1 (#6748)
* revert
Fix code indentation
Fix code

Upgrade code to php 8.1

* fix remarques

* code review

* code review

* code review

* Apply suggestions from code review

* code review

* Fixes

* Many remainging updates of array syntax

* Lost case 'reading-list'

* Uneeded PHPDoc

---------

Co-authored-by: Luc Sanchez <l.sanchez-prestataire@alptis.fr>
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
2024-11-28 17:11:04 +01:00

14 lines
275 B
PHP

<?php
declare(strict_types=1);
class FreshRSS_Zip_Exception extends Minz_Exception {
public function __construct(private readonly int $zipErrorCode) {
parent::__construct('ZIP error!', 2141);
}
public function zipErrorCode(): int {
return $this->zipErrorCode;
}
}