]> git.mxchange.org Git - city.git/blobdiff - application/city/classes/tasks/daemon/map_expander/class_CityDaemonMapExpanderTask.php
Continued:
[city.git] / application / city / classes / tasks / daemon / map_expander / class_CityDaemonMapExpanderTask.php
index ef4d6a121c305c5c25f130c097143b9807307d4e..e589ee16ced055dcbd4dc6319015ffc0be779533 100644 (file)
@@ -1,10 +1,22 @@
 <?php
+// Own namespace
+namespace Org\Mxchange\City\Daemon\Task\Expander\Map;
+
+// Import application-specific stuff
+use Org\Mxchange\City\Task\BaseCityTask;
+use Org\Mxchange\Factory\City\Daemon\CityDaemonFactory;
+
+// Import framework stuff
+use Org\Mxchange\CoreFramework\Task\Taskable;
+use Org\Mxchange\CoreFramework\Visitor\Visitable;
+use Org\Mxchange\CoreFramework\Visitor\Visitor;
+
 /**
  * A map expander task for the daemon
  *
  * @author             Roland Haeder <webmaster@ship-simu.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.ship-simu.org
  *
@@ -77,7 +89,7 @@ class CityDaemonMapExpanderTask extends BaseCityTask implements Taskable, Visita
                if ($cityInstance->isMapPendingExpansion()) {
                        // Expand the map
                        $cityInstance->expandMaps();
-               } // END - if
+               }
        }
 
        /**
@@ -90,6 +102,3 @@ class CityDaemonMapExpanderTask extends BaseCityTask implements Taskable, Visita
                self::createDebugInstance(__CLASS__)->debugOutput('TASK[' . __METHOD__ . ':' . __LINE__ . ']: Shutting down...');
        }
 }
-
-// [EOF]
-?>