mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-23 04:38:01 -05:00
* Add PHPStan #fix https://github.com/FreshRSS/FreshRSS/issues/4016 https://phpstan.org/ ```sh composer run-script phpstan ``` * More fixes * Fix global variables * Add .phtml * Fix merge https://github.com/FreshRSS/FreshRSS/pull/4090 * Fix more warnings * Fix view errors and enable in CI * ReturnTypeWillChange * Dynamic view type * Fix Minz static/self bug
8 lines
207 B
PHP
8 lines
207 B
PHP
<?php
|
|
class Minz_ControllerNotExistException extends Minz_Exception {
|
|
public function __construct ($code = self::ERROR) {
|
|
$message = 'Controller not found!';
|
|
parent::__construct ($message, $code);
|
|
}
|
|
}
|