]> git.mxchange.org Git - friendica.git/commitdiff
Changes:
authorRoland Häder <roland@mxchange.org>
Mon, 20 Jun 2022 01:10:02 +0000 (03:10 +0200)
committerRoland Häder <roland@mxchange.org>
Tue, 21 Jun 2022 11:47:37 +0000 (13:47 +0200)
- added type-hints
- added some missing documentation

src/Database/DBA.php
src/Database/Database.php

index e519a63cd6f99e468b753192ac949aca6d577796..a797d3235b1a84464733afcf06390a41ef0e57e7 100644 (file)
@@ -218,12 +218,12 @@ class DBA
        /**
         * Check if data exists
         *
-        * @param string|array $table Table name or array [schema => table]
-        * @param array               $condition array of fields for condition
+        * @param string $table     Table name or array [schema => table]
+        * @param array  $condition Array of fields for condition
         * @return boolean Are there rows for that condition?
         * @throws \Exception
         */
-       public static function exists($table, array $condition): bool
+       public static function exists(string $table, array $condition): bool
        {
                return DI::dba()->exists($table, $condition);
        }
index 8c2cd0241d7c9d686ed14ca0613380ae23bbbb43..384e1d1a658dee0731c979fe0e254d1b4541dedd 100644 (file)
@@ -1527,6 +1527,7 @@ class Database
         */
        public function count($table, array $condition = [], array $params = []): int
        {
+               // @TODO Can we dump this to have ": int" as returned type-hint?
                if (empty($table)) {
                        throw new InvalidArgumentException('Parameter "table" cannot be empty.');
                }