]> git.mxchange.org Git - core.git/blobdiff - inc/main/interfaces/feature/class_Feature.php
Introduced namespaces:
[core.git] / inc / main / interfaces / feature / class_Feature.php
index 74ccaf805a3a8d075c15fcb36851b1ecf6cd7242..6485e73864c0f3342a0342375128974af4fce72f 100644 (file)
@@ -1,4 +1,10 @@
 <?php
+// Own namespace
+namespace CoreFramework\Feature;
+
+// Load framework stuff
+use CoreFramework\Generic\FrameworkInterface;
+
 /**
  * A Feature interface
  *
@@ -28,7 +34,5 @@ interface Feature extends FrameworkInterface {
         * @return      $isAvailable    Whether this feature is available
         */
        function isFeatureAvailable ();
-}
 
-// [EOF]
-?>
+}