We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e89c871 commit d1dc89bCopy full SHA for d1dc89b
src/Hook.php
@@ -57,6 +57,9 @@ public function __call($method, $args)
57
$callable = $this->resolveArgument($args[0]);
58
59
Hooks::$method($this->buildTransactionName(), function (&$transaction) use ($callable) {
60
+
61
+ echo "Running Hook: " . $this->buildTransactionName();
62
63
$transactionObject = new Transaction($transaction);
64
$callable($transactionObject);
65
$transaction = $transactionObject->getTransaction();
0 commit comments