blob: 1a46cff36fbfa324d5ef3c110f4f83df31c742b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
declare(strict_types=1);
class FreshRSS_ActionController extends Minz_ActionController {
/**
* @var FreshRSS_View
* @phpstan-ignore-next-line
*/
protected $view;
}
|