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 d56ad7e commit 11cf372Copy full SHA for 11cf372
src/Utility/Language.php
@@ -107,7 +107,7 @@ public function getTranslationsByLanguage(string $language): array
107
*/
108
public function translate(string $text): string
109
{
110
- return $this->translations[$text] ?? "![${text}]";
+ return $this->translations[$text] ?? "![{$text}]";
111
}
112
113
/**
tests/DiffTest.php
@@ -50,7 +50,7 @@ public function getGroupedOpcodesDataProvider(): array
50
51
* Test the Diff::getGroupedOpcodes.
52
*
53
- * @covers \Jfcherng\Utility\Diff::getGroupedOpcodes
+ * @covers \Jfcherng\Diff\Diff::getGroupedOpcodes
54
* @dataProvider getGroupedOpcodesDataProvider
55
56
* @param string $old the old
0 commit comments