mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-30 16:11:11 -05:00
* PHPStan level 6 for all PDO and Exception classes Contributes to https://github.com/FreshRSS/FreshRSS/issues/4112 * Fix type * Now also our remaining own librairies * Motivation for a few more files * A few more DAO classes * Last interface
9 lines
300 B
PHP
9 lines
300 B
PHP
<?php
|
||
class Minz_ControllerNotActionControllerException extends Minz_Exception {
|
||
public function __construct(string $controller_name, int $code = self::ERROR) {
|
||
$message = 'Controller `' . $controller_name . '` isn’t instance of ActionController';
|
||
|
||
parent::__construct ($message, $code);
|
||
}
|
||
}
|