]> git.mxchange.org Git - city.git/blobdiff - application/city/classes/city_daemon/class_
Continued:
[city.git] / application / city / classes / city_daemon / class_
index 3733a98443623e470ca6da9bb818b15ef4de6cd8..a909f857da432fb52526d0380459d30d9ba3ecb6 100644 (file)
@@ -2,7 +2,13 @@
 // Own namespace
 namespace Org\Mxchange\City\Daemon\Simulation;
 
+// Import application-specific stuff
+use Org\Mxchange\City\Helper\CityHelper;
+
 // Import framework stuff
+use Org\Mxchange\CoreFramework\Handler\Task\HandleableTask;
+use Org\Mxchange\CoreFramework\Middleware\Debug\DebugMiddleware;
+use Org\Mxchange\CoreFramework\Registry\Registerable;
 use Org\Mxchange\CoreFramework\Request\Requestable;
 
 /**
@@ -10,7 +16,7 @@ use Org\Mxchange\CoreFramework\Request\Requestable;
  *
  * @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
  *
@@ -66,7 +72,7 @@ class Simulation???CityDaemon extends BaseCity implements CityHelper, Registerab
        public function doBootstrapping () {
                // Call generic (parent) bootstrapping method first
                parent::doGenericBootstrapping();
-               $this->partialStub('Please implement this method.');
+               DebugMiddleware::getSelfInstance()->partialStub('Please implement this method.');
        }
 
        /**
@@ -76,7 +82,7 @@ class Simulation???CityDaemon extends BaseCity implements CityHelper, Registerab
         * @todo        Implement this method
         */
        public function initQueues () {
-               $this->partialStub('Please implement this method.');
+               DebugMiddleware::getSelfInstance()->partialStub('Please implement this method.');
        }
 
        /**
@@ -96,6 +102,6 @@ class Simulation???CityDaemon extends BaseCity implements CityHelper, Registerab
         * @todo        0% done
         */
        public function addExtraTasks (HandleableTask $handlerInstance) {
-               $this->partialStub('Please add some tasks or empty this method.');
+               DebugMiddleware::getSelfInstance()->partialStub('Please add some tasks or empty this method.');
        }
 }