]> git.mxchange.org Git - city.git/blobdiff - application/city/classes/actions/class_BaseCityAction.php
Continued:
[city.git] / application / city / classes / actions / class_BaseCityAction.php
index aa27ec467cd26526a9d58c40518d635c6141de74..bac7b84e77e0dbe0c88eb704067d6b9347e96ce3 100644 (file)
@@ -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 <webmaster@shipsimu.org>
  * @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 <http://www.gnu.org/licenses/>.
  */
-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);
        }