whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
amphp
/
parallel-functions
/
src
/
Internal
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/amphp/parallel-functions/src/Internal/SerializedCallableTask.php
<?php namespace Amp\ParallelFunctions\Internal; use Amp\Parallel\Worker\Environment; use Amp\Parallel\Worker\Task; /** @internal */ class SerializedCallableTask implements Task { /** @var string */ private $function; /** @var mixed[] */ private $args; /** * @param string $function Serialized function. * @param array $args Arguments to pass to the function. Must be serializable. */ public function __construct(string $function, array $args) { $this->function = $function; $this->args = $args; } public function run(Environment $environment) { $callable = \unserialize($this->function, ['allowed_classes' => true]); if ($callable instanceof \__PHP_Incomplete_Class) { throw new \Error('When using a class instance as a callable, the class must be autoloadable'); } if (\is_array($callable) && $callable[0] instanceof \__PHP_Incomplete_Class) { throw new \Error('When using a class instance method as a callable, the class must be autoloadable'); } return $callable(...$this->args); } }
Copyright ©2021 || Defacer Indonesia