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/CallbackDecorator.php')
-rw-r--r--src/decorators/CallbackDecorator.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/decorators/CallbackDecorator.php b/src/decorators/CallbackDecorator.php
index f6cd2bd5..844c0f94 100644
--- a/src/decorators/CallbackDecorator.php
+++ b/src/decorators/CallbackDecorator.php
@@ -10,6 +10,11 @@ use Closure;
class CallbackDecorator extends Decorator
{
+ /**
+ * @var \Closure|mixed
+ */
+ public $fn;
+ public $p;
public function __construct(Closure $callback, $param = null)
{
$this->fn = $callback;