Skip to content

Commit 2b80b9e

Browse files
committed
Line with long regexp exceeded max line length of 120 chars
1 parent df27f99 commit 2b80b9e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

dev/tests/static/testsuite/Magento/Test/Integrity/ClassesTest.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,12 @@ public function testClassReferences()
290290
function ($file) {
291291
$relativePath = str_replace(BP, "", $file);
292292
// Due to the examples given with the regex patterns, we skip this test file itself
293-
if (preg_match('/\/dev\/tests\/static\/testsuite\/Magento\/Test\/Integrity\/ClassesTest.php$/', $relativePath)) {
293+
if (
294+
preg_match(
295+
'/\/dev\/tests\/static\/testsuite\/Magento\/Test\/Integrity\/ClassesTest.php$/',
296+
$relativePath
297+
)
298+
) {
294299
return;
295300
}
296301
$contents = file_get_contents($file);

0 commit comments

Comments
 (0)