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

abstract class FreshRSS_ActionController extends Minz_ActionController {

	/**
	 * @var FreshRSS_View
	 */
	protected $view;

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