Scientist\Machine::executeCallback PHP Méthode

executeCallback() protected méthode

Execute the callback with parameters.
protected executeCallback ( ) : void
Résultat void
    protected function executeCallback()
    {
        if ($this->muted) {
            return $this->executeMutedCallback();
        }
        $this->result->setValue(call_user_func_array($this->callback, $this->params));
    }