mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-31 16:41:04 -05:00
* Fix types for extensions To accompany https://github.com/FreshRSS/Extensions/pull/185 * Avoid bug redeclared function
11 lines
150 B
PHP
11 lines
150 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
class FreshRSS_ActionController extends Minz_ActionController {
|
|
|
|
/**
|
|
* @var FreshRSS_View
|
|
*/
|
|
protected $view;
|
|
}
|