Skip to content

Commit 7713ddf

Browse files
Merge branch '3.0' into 3.1
* 3.0: [Console] Application update PHPDoc of add and register methods [Config] Extra tests for Config component Fixed bugs in names of classes and methods. [DoctrineBridge] Fixed php doc [FrameworkBundle] Fixed parameters number mismatch declaration [BrowserKit] Added test for followRedirect method (POST method) Fix the money form type render with Bootstrap3 [BrowserKit] Uppercase the "GET" method in redirects [DomCrawler] Inherit the namespace cache in subcrawlers [WebProfilerBundle] Fixed JSDoc parameter definition [HttpFoundation] HttpCache refresh stale responses containing an ETag
2 parents d63a945 + 4d5c3ed commit 7713ddf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DataCollectorTranslator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,14 +126,14 @@ private function collectMessage($locale, $domain, $id, $translation, $parameters
126126
} elseif ($catalogue->has($id, $domain)) {
127127
$state = self::MESSAGE_EQUALS_FALLBACK;
128128

129-
$fallbackCatalogue = $catalogue->getFallBackCatalogue();
129+
$fallbackCatalogue = $catalogue->getFallbackCatalogue();
130130
while ($fallbackCatalogue) {
131131
if ($fallbackCatalogue->defines($id, $domain)) {
132132
$locale = $fallbackCatalogue->getLocale();
133133
break;
134134
}
135135

136-
$fallbackCatalogue = $fallbackCatalogue->getFallBackCatalogue();
136+
$fallbackCatalogue = $fallbackCatalogue->getFallbackCatalogue();
137137
}
138138
} else {
139139
$state = self::MESSAGE_MISSING;

0 commit comments

Comments
 (0)