]> git.mxchange.org Git - core.git/blobdiff - framework/main/interfaces/database/frontend/class_DatabaseFrontend.php
Refacuring:
[core.git] / framework / main / interfaces / database / frontend / class_DatabaseFrontend.php
index d37cbf25fc521a241bc89ecac532c036654728ce..8154bcf278651288d1f938f623a842e5e080c56c 100644 (file)
@@ -34,14 +34,14 @@ interface DatabaseFrontend extends FrameworkInterface {
         *
         * @return      $indexKey       Index key
         */
-       function getIndexKey();
+       function getIndexKey ();
 
        /**
         * Getter for last exception
         *
         * @return      $lastException  Last exception or NULL if none occured
         */
-       function getLastException();
+       function getLastException ();
 
        /**
         * Do a "select" query on the current table with the given search criteria and
@@ -51,7 +51,7 @@ interface DatabaseFrontend extends FrameworkInterface {
         * @param       $onlyKeys                       Only use these keys for a cache key
         * @return      $resultInstance         An instance of a database result class
         */
-       function doSelectByCriteria(Criteria $criteriaInstance, array $onlyKeys = []);
+       function doSelectByCriteria (Criteria $criteriaInstance, array $onlyKeys = []);
 
        /**
         * Count the numbers of rows we shall receive
@@ -60,20 +60,20 @@ interface DatabaseFrontend extends FrameworkInterface {
         * @param       $onlyKeys                       Only use these keys for a cache key
         * @return      $numRows                        Numbers of rows of database entries
         */
-       function doSelectCountByCriteria(Criteria $criteriaInstance, array $onlyKeys = []);
+       function doSelectCountByCriteria (Criteria $criteriaInstance, array $onlyKeys = []);
 
        /**
         * Getter for primary key used in wrapped table
         *
         * @return      $primaryKey             Primary key used in wrapped table
         */
-       function getPrimaryKeyValue();
+       function getPrimaryKeyValue ();
 
        /**
         * Counts total rows of this table
         *
         * @return      $count  Total rows of this table
         */
-       function countTotalRows();
+       function countTotalRows ();
 
 }