Skip to content

Commit 7fbd58a

Browse files
Merge branch '3.4' into 4.3
* 3.4: #30432 fix an error message fix paths to detect code owners [Validator] Ensure numeric subpaths do not cause errors on PHP 7.4 Remove unused local variables in tests Make sure to collect child forms created on *_SET_DATA events do not render errors for checkboxes twice
2 parents 5dca0bd + dab657d commit 7fbd58a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/Command/LintCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public function testLintFileNotReadable()
9797
$filename = $this->createFile('');
9898
unlink($filename);
9999

100-
$ret = $tester->execute(['filename' => $filename], ['decorated' => false]);
100+
$tester->execute(['filename' => $filename], ['decorated' => false]);
101101
}
102102

103103
/**

Tests/ParserTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function testTabsInYaml()
6464

6565
foreach ($yamls as $yaml) {
6666
try {
67-
$content = $this->parser->parse($yaml);
67+
$this->parser->parse($yaml);
6868

6969
$this->fail('YAML files must not contain tabs');
7070
} catch (\Exception $e) {

0 commit comments

Comments
 (0)