]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/result/class_DatabaseResult.php
Fixed a typo
[core.git] / inc / classes / main / result / class_DatabaseResult.php
index 0fab649cc03bb9ae4100242a7c4de1d156b92e53..f86fdc95695c57b964cf54e0205a8b4416c1cee1 100644 (file)
@@ -120,7 +120,7 @@ class DatabaseResult extends BaseFrameworkSystem implements SearchableResult, Up
         * "Iterator" method next() to advance to the next valid entry. This method
         * does also check if result is invalid
         *
-        * @return      $nextValid      Wether the next entry is valid
+        * @return      $nextValid      Whether the next entry is valid
         */
        public function next () {
                // Default is not valid
@@ -177,7 +177,7 @@ class DatabaseResult extends BaseFrameworkSystem implements SearchableResult, Up
        /**
         * Checks if next() and rewind will give a valid result
         *
-        * @return      $isValid Wether the next/rewind entry is valid
+        * @return      $isValid Whether the next/rewind entry is valid
         */
        public function valid () {
                // By default nothing is valid
@@ -194,9 +194,9 @@ class DatabaseResult extends BaseFrameworkSystem implements SearchableResult, Up
        }
 
        /**
-        * Determines wether the status of the query was fine (LocalfileDatabase::RESULT_OKAY)
+        * Determines whether the status of the query was fine (LocalfileDatabase::RESULT_OKAY)
         *
-        * @return      $ifStatusOkay   Wether the status of the query was okay
+        * @return      $ifStatusOkay   Whether the status of the query was okay
         */
        public function ifStatusIsOkay () {
                return ((isset($this->resultArray[BaseDatabaseFrontend::RESULT_INDEX_STATUS])) && ($this->resultArray[BaseDatabaseFrontend::RESULT_INDEX_STATUS] === LocalfileDatabase::RESULT_OKAY));
@@ -306,9 +306,9 @@ class DatabaseResult extends BaseFrameworkSystem implements SearchableResult, Up
        }
 
        /**
-        * Checks wether we have out-dated entries or not
+        * Checks whether we have out-dated entries or not
         *
-        * @return      $needsUpdate    Wether we have out-dated entries
+        * @return      $needsUpdate    Whether we have out-dated entries
         */
        public function ifDataNeedsFlush () {
                $needsUpdate = (count($this->outDated) > 0);
@@ -337,7 +337,7 @@ class DatabaseResult extends BaseFrameworkSystem implements SearchableResult, Up
         * Find a key inside the result array
         *
         * @param       $key    The key we shall find
-        * @return      $found  Wether the key was found or not
+        * @return      $found  Whether the key was found or not
         */
        public function find ($key) {
                // By default nothing is found