X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=application%2Fcity%2Fclasses%2Factions%2Fclass_BaseCityAction.php;h=bac7b84e77e0dbe0c88eb704067d6b9347e96ce3;hb=aa417114c57727c4803c1ba3db8d6a067fb57756;hp=aa27ec467cd26526a9d58c40518d635c6141de74;hpb=b9373eb6c1b134fdef22bda0f97a3e8ca34f3def;p=city.git diff --git a/application/city/classes/actions/class_BaseCityAction.php b/application/city/classes/actions/class_BaseCityAction.php index aa27ec4..bac7b84 100644 --- a/application/city/classes/actions/class_BaseCityAction.php +++ b/application/city/classes/actions/class_BaseCityAction.php @@ -3,6 +3,7 @@ namespace Org\Mxchange\City\Action; // Import framework stuff +use Org\Mxchange\CoreFramework\Controller\Controller; use Org\Mxchange\CoreFramework\Request\Requestable; use Org\Mxchange\CoreFramework\Response\Responseable; @@ -11,7 +12,7 @@ use Org\Mxchange\CoreFramework\Response\Responseable; * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2015, 2016 City Developer Team + * @copyright Copyright (c) 2015 - 2023 City Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.shipsimu.org * @@ -28,14 +29,14 @@ use Org\Mxchange\CoreFramework\Response\Responseable; * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -class BaseCityAction extends BaseAction { +abstract class BaseCityAction extends BaseAction { /** * Protected constructor * * @param $className Name of the class * @return void */ - protected function __construct ($className) { + protected function __construct (string $className) { // Call parent constructor parent::__construct($className); }