Skip to content

Commit aaad815

Browse files
authored
Changed line length
Changed line length so that the @ignoreCodingStandard which was removed will not throw an exception anymore.
1 parent 00856ae commit aaad815

File tree

1 file changed

+4
-1
lines changed
  • lib/internal/Magento/Framework/Profiler/Driver

1 file changed

+4
-1
lines changed

lib/internal/Magento/Framework/Profiler/Driver/Factory.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,10 @@ public function create(array $config = null)
6262
$driver = new $class($config);
6363
if (!$driver instanceof DriverInterface) {
6464
throw new \InvalidArgumentException(
65-
sprintf("Driver class \"%s\" must implement \Magento\Framework\Profiler\DriverInterface.", get_class($driver))
65+
sprintf(
66+
"Driver class \"%s\" must implement \Magento\Framework\Profiler\DriverInterface.",
67+
get_class($driver)
68+
)
6669
);
6770
}
6871
return $driver;

0 commit comments

Comments
 (0)