]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/interfaces/database/class_FrameworkDatabaseInterface.php
Unneccessary sanity checks removed
[shipsimu.git] / inc / classes / interfaces / database / class_FrameworkDatabaseInterface.php
index 196616153b9fb0ceb1537b8b24896c8709fffe83..5b73d5102eb2015c04c5d67ba96221c795489e61 100644 (file)
@@ -26,16 +26,12 @@ interface FrameworkDatabaseInterface extends FrameworkInterface {
         * Analyses if a unique ID has already been used or not. This method does
         * only pass the given ID through to the "real" database layer.
         *
-        * @param               $uniqueID               A unique ID number which shall be checked
-        *                                              before it will be used
-        * @param               $inConstructor  If called from a constructor or from
-        *                                              somewhere else
-        * @return      $isUnused               true    = The unique ID was not found in the database,
-        *                                              false = It is already in use by an other object
-        * @throws      NullPointerException    If $dbInstance is null
-        * @throws      NoObjectException               If $dbInstance is not an object
-        * @throws      MissingMethodException  If the required method
-        *                                                              isUniqueIdUsed() was not found
+        * @param       $uniqueID               A unique ID number which shall be checked
+        *                                                      before it will be used
+        * @param       $inConstructor  If called from a constructor or from
+        *                                                      somewhere else
+        * @return      $isUnused               true = The unique ID was not found in the database,
+        *                                                      false = It is already in use by an other object
         */
        function isUniqueIdUsed ($uniqueID, $inConstructor = false);
 }