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 00856ae commit aaad815Copy full SHA for aaad815
lib/internal/Magento/Framework/Profiler/Driver/Factory.php
@@ -62,7 +62,10 @@ public function create(array $config = null)
62
$driver = new $class($config);
63
if (!$driver instanceof DriverInterface) {
64
throw new \InvalidArgumentException(
65
- sprintf("Driver class \"%s\" must implement \Magento\Framework\Profiler\DriverInterface.", get_class($driver))
+ sprintf(
66
+ "Driver class \"%s\" must implement \Magento\Framework\Profiler\DriverInterface.",
67
+ get_class($driver)
68
+ )
69
);
70
}
71
return $driver;
0 commit comments