Skip to content

Commit 30d205a

Browse files
author
Oleksii Korshenko
authored
MAGETWO-66416: Removed commented out line for ignoring coding standards #6913
2 parents 5f6f12a + f91680d commit 30d205a

File tree

1 file changed

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

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
* Copyright © 2013-2017 Magento, Inc. All rights reserved.
66
* See COPYING.txt for license details.
77
*/
8-
9-
// @codingStandardsIgnoreFile
10-
118
namespace Magento\Framework\Profiler\Driver;
129

1310
use Magento\Framework\Profiler\DriverInterface;
@@ -65,7 +62,10 @@ public function create(array $config = null)
6562
$driver = new $class($config);
6663
if (!$driver instanceof DriverInterface) {
6764
throw new \InvalidArgumentException(
68-
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+
)
6969
);
7070
}
7171
return $driver;

0 commit comments

Comments
 (0)