]> git.mxchange.org Git - city.git/blobdiff - application/city/classes/database/frontend/city_entities/sections/class_CitySectionsDatabaseWrapper.php
Continued:
[city.git] / application / city / classes / database / frontend / city_entities / sections / class_CitySectionsDatabaseWrapper.php
index 7dc2b235e78e9f0c3ebcea3ddfb2355b09fed91d..6f29ee848dbc310dfe588f3560d320802571f96c 100644 (file)
@@ -1,4 +1,12 @@
 <?php
+// Own namespace
+namespace Org\Mxchange\City\Database\Frontend\Sections;
+
+// Import framework stuff
+use Org\Mxchange\CoreFramework\Database\Frontend\BaseDatabaseWrapper;
+use Org\Mxchange\CoreFramework\Factory\ObjectFactory;
+use Org\Mxchange\CoreFramework\Registry\Registerable;
+
 /**
  * A database wrapper for city sections. Sections are the smalles entity of a
  * city. They can be connected with each other and form a lot. Therefore only
@@ -31,7 +39,7 @@
  */
 class CitySectionsDatabaseWrapper extends BaseDatabaseWrapper implements CitySectionsWrapper, Registerable {
        // Constants for database table names
-       const DB_TABLE_CITY_SECTIONS = 'city_sections';
+       const DB_TABLE_CITY_SECTIONS           = 'city_sections';
 
        // Entry id
        const DB_COLUMN_ENTRY_ID               = 'entry_id';
@@ -263,6 +271,3 @@ class CitySectionsDatabaseWrapper extends BaseDatabaseWrapper implements CitySec
                self::createDebugInstance(__CLASS__)->debugOutput('[' . __METHOD__ . ':' . __LINE__ . ']: A total of ' . $totalSections . ' sections has been written for city id ' . $cityId . '.');
        }
 }
-
-// [EOF]
-?>