aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/Models/ActionController.php
blob: 072f1a3d66898f5096fc4bf23c0db8b4ea0cbf81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
declare(strict_types=1);

abstract class FreshRSS_ActionController extends Minz_ActionController {

	/**
	 * @var FreshRSS_View
	 * @phpstan-ignore property.phpDocType
	 */
	protected $view;

	public function __construct(string $viewType = '') {
		parent::__construct($viewType === '' ? FreshRSS_View::class : $viewType);
	}
}