Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/decorators/ArrayMergeDecorator.php')
-rw-r--r--src/decorators/ArrayMergeDecorator.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/decorators/ArrayMergeDecorator.php b/src/decorators/ArrayMergeDecorator.php
index 47a59c83..c40e93b5 100644
--- a/src/decorators/ArrayMergeDecorator.php
+++ b/src/decorators/ArrayMergeDecorator.php
@@ -1,7 +1,7 @@
<?php
/**
- * PHPPgAdmin 6.1.3
+ * PHPPgAdmin6
*/
namespace PHPPgAdmin\Decorators;
@@ -9,12 +9,15 @@ namespace PHPPgAdmin\Decorators;
class ArrayMergeDecorator extends Decorator
{
public $m;
+
public function __construct($arrays)
{
$this->m = $arrays;
}
/**
+ * @param mixed $fields
+ *
* @return array
*/
public function value($fields)