<?php namespace blockchain\web3; class Callback { public $result; function __invoke($error, $result) { //$this->error = $error; if ($error) throw $error; $this->result = $result; } }