mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2025-12-30 17:07:49 -05:00
* 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>
14 lines
313 B
PHP
14 lines
313 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
class FreshRSS_AlreadySubscribed_Exception extends Minz_Exception {
|
|
|
|
public function __construct(string $url, private readonly string $feedName) {
|
|
parent::__construct('Already subscribed! ' . $url, 2135);
|
|
}
|
|
|
|
public function feedName(): string {
|
|
return $this->feedName;
|
|
}
|
|
}
|