Skip to content

Commit d6a59f5

Browse files
committed
allow any method call in null driver
1 parent 01eb0fc commit d6a59f5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Drivers/NullDriver.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,9 @@ public function format(Metric $metric): array
1515
{
1616
return [];
1717
}
18+
19+
public function __call($method, $parameters)
20+
{
21+
return $this;
22+
}
1823
}

0 commit comments

Comments
 (0)