mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-24 21:27:56 -05:00
13 lines
181 B
PHP
13 lines
181 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
class FreshRSS_ActionController extends Minz_ActionController {
|
|
|
|
/**
|
|
* @var FreshRSS_View
|
|
* @phpstan-ignore-next-line
|
|
*/
|
|
protected $view;
|
|
}
|