mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-19 02:37:55 -05:00
* Minor update whitespace PHPCS rules To simplify our configuration, apply more rules, and be clearer about what is added or removed compared with PSR12. Does not change our current conventions, but just a bit more consistent. * Forgotten *.phtml * Sort exclusion patterns + add a few for Extensions repo * Relaxed some rules
10 lines
208 B
PHP
10 lines
208 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
class FreshRSS_BadUrl_Exception extends FreshRSS_Feed_Exception {
|
|
|
|
public function __construct(string $url) {
|
|
parent::__construct('`' . $url . '` is not a valid URL');
|
|
}
|
|
}
|