We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 471ca8e commit dab657dCopy full SHA for dab657d
Tests/Command/LintCommandTest.php
@@ -85,7 +85,7 @@ public function testLintFileNotReadable()
85
$filename = $this->createFile('');
86
unlink($filename);
87
88
- $ret = $tester->execute(['filename' => $filename], ['decorated' => false]);
+ $tester->execute(['filename' => $filename], ['decorated' => false]);
89
}
90
91
/**
Tests/ParserTest.php
@@ -110,7 +110,7 @@ public function testTabsInYaml()
110
111
foreach ($yamls as $yaml) {
112
try {
113
- $content = $this->parser->parse($yaml);
+ $this->parser->parse($yaml);
114
115
$this->fail('YAML files must not contain tabs');
116
} catch (\Exception $e) {
0 commit comments