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.php15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/decorators/Decorator.php b/src/decorators/Decorator.php
index c23f75d8..14bddc0e 100644
--- a/src/decorators/Decorator.php
+++ b/src/decorators/Decorator.php
@@ -6,9 +6,12 @@
namespace PHPPgAdmin\Decorators;
+use Closure;
+use PHPPgAdmin\Traits\HelperTrait;
+
class Decorator
{
- use \PHPPgAdmin\Traits\HelperTrait;
+ use HelperTrait;
public $container;
@@ -56,10 +59,10 @@ class Decorator
}
/**
- * @param \Closure $callback
- * @param (mixed|string)[]|null $params
+ * @param Closure $callback
+ * @param ((mixed|string)[]|null) $params
*/
- public static function callback(\Closure $callback, ?array $params = null)
+ public static function callback(Closure $callback, ?array $params = null)
{
return new CallbackDecorator($callback, $params);
}
@@ -75,7 +78,7 @@ class Decorator
public static function concat(/* ... */)
{
- return new \PHPPgAdmin\Decorators\ConcatDecorator(\func_get_args());
+ return new ConcatDecorator(\func_get_args());
}
/**
@@ -84,7 +87,7 @@ class Decorator
*/
public static function replace(string $str, array $params)
{
- return new \PHPPgAdmin\Decorators\ReplaceDecorator($str, $params);
+ return new ReplaceDecorator($str, $params);
}
/**