]> git.mxchange.org Git - friendica.git/commitdiff
Fix wrong type-hints for table parameter in Database->selectToArray and DBA::selectTo...
authorHypolite Petovan <hypolite@mrpetovan.com>
Mon, 16 Dec 2019 13:49:01 +0000 (08:49 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Mon, 16 Dec 2019 13:49:01 +0000 (08:49 -0500)
src/Database/DBA.php
src/Database/Database.php

index 6f746ff64702dbd9ad47c344b41de4d7080aaded..befb65bf9a904f1a31241d3b4c3c1e16b7940626 100644 (file)
@@ -334,9 +334,9 @@ class DBA extends BaseObject
        /**
         * @brief Delete a row from a table
         *
-        * @param string $table      Table name
-        * @param array  $conditions Field condition(s)
-        * @param array  $options
+        * @param string|array $table      Table name
+        * @param array        $conditions Field condition(s)
+        * @param array        $options
         *                           - cascade: If true we delete records in other tables that depend on the one we're deleting through
         *                           relations (default: true)
         *
@@ -411,7 +411,7 @@ class DBA extends BaseObject
         * @throws \Exception
         * @see   self::select
         */
-       public static function selectToArray(string $table, array $fields = [], array $condition = [], array $params = [])
+       public static function selectToArray($table, array $fields = [], array $condition = [], array $params = [])
        {
                return self::getClass(Database::class)->selectToArray($table, $fields, $condition, $params);
        }
index 72ce6bbe6c51616ad33f2c41d9b17f5411b41733..1dd3524ed61c694d2bc2f26303c475ca684325c2 100644 (file)
@@ -1377,10 +1377,10 @@ class Database
         *
         * @brief Retrieve a single record from a table
         *
-        * @param string $table
-        * @param array  $fields
-        * @param array  $condition
-        * @param array  $params
+        * @param string|array $table
+        * @param array        $fields
+        * @param array        $condition
+        * @param array        $params
         *
         * @return bool|array
         * @throws \Exception
@@ -1412,7 +1412,7 @@ class Database
         * @throws \Exception
         * @see   self::select
         */
-       public function selectToArray(string $table, array $fields = [], array $condition = [], array $params = [])
+       public function selectToArray($table, array $fields = [], array $condition = [], array $params = [])
        {
                return $this->toArray($this->select($table, $fields, $condition, $params));
        }