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/Decorator.php')
-rw-r--r--src/decorators/Decorator.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decorators/Decorator.php b/src/decorators/Decorator.php
index 8ead99e4..50cf8b26 100644
--- a/src/decorators/Decorator.php
+++ b/src/decorators/Decorator.php
@@ -9,7 +9,7 @@ namespace PHPPgAdmin\Decorators;
class Decorator
{
use \PHPPgAdmin\Traits\HelperTrait;
-
+ public $container;
public function __construct($value)
{
$this->val = $value;
@@ -125,7 +125,7 @@ class Decorator
// at value evaluation time.
if (2 < \func_num_args()) {
- $v = \func_get_args();
+ $v = \func_get_args();
$base = \array_shift($v);
return new UrlDecorator($base, new ArrayMergeDecorator($v));