]> git.mxchange.org Git - mailer.git/blobdiff - inc/classes/interfaces/database/class_FrameworkDatabaseInterface.php
Code base synced, updated
[mailer.git] / inc / classes / interfaces / database / class_FrameworkDatabaseInterface.php
index 846f140d04474decf80be2a8ac78fb77c459fe14..6e3f3d6d4f5c5d4fe18fa072bca8272445abad5c 100644 (file)
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 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
-        */
-       function isUniqueIdUsed ($uniqueID, $inConstructor = false);
 }
 
 // [EOF]