]> 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 9408e5f44d20129ec3c6384ed7f974de670dddaa..bac7b84e77e0dbe0c88eb704067d6b9347e96ce3 100644 (file)
@@ -1,10 +1,18 @@
 <?php
+// Own namespace
+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;
+
 /**
  * A general action class for city
  *
  * @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
  *
  * 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);
        }
@@ -57,6 +65,3 @@ class BaseCityAction extends BaseAction {
                // Unfinished method
        }
 }
-
-// [EOF]
-?>