diff --git a/lib/internal/Magento/Framework/Profiler/Driver/Factory.php b/lib/internal/Magento/Framework/Profiler/Driver/Factory.php index 5975f60f41ddb..f228ca8043fd1 100644 --- a/lib/internal/Magento/Framework/Profiler/Driver/Factory.php +++ b/lib/internal/Magento/Framework/Profiler/Driver/Factory.php @@ -5,9 +5,6 @@ * Copyright © 2016 Magento. All rights reserved. * See COPYING.txt for license details. */ - -// @codingStandardsIgnoreFile - namespace Magento\Framework\Profiler\Driver; use Magento\Framework\Profiler\DriverInterface; @@ -65,7 +62,10 @@ public function create(array $config = null) $driver = new $class($config); if (!$driver instanceof DriverInterface) { throw new \InvalidArgumentException( - sprintf("Driver class \"%s\" must implement \Magento\Framework\Profiler\DriverInterface.", get_class($driver)) + sprintf( + "Driver class \"%s\" must implement \Magento\Framework\Profiler\DriverInterface.", + get_class($driver) + ) ); } return $driver;