You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I used composer to get Translator for my Behat installation the I found line 131 missing a semi-colon. The original function looks like this:
public function setFallbackLocale($locales)
{
$this->setFallbackLocales(is_array($locales) ? $locales : array($locales))
}
I added a semi-colon to the line and everything works well. The line should look like the following:
$this->setFallbackLocales(is_array($locales) ? $locales : array($locales));
The text was updated successfully, but these errors were encountered:
* master: (449 commits)
[2.2] add http_method_override option to ease setup
fixed typo (closessymfony#7290)
fixed ticket 7210
[2.3] [DI] Improve the generated PHPDoc of the dumped PHP container
[FrameworkBundle] Fixes invalid serialized objects in cache
[WebProfilerBundle] removed the display of some information when their value is n/a
remove dead code in yaml component
Fixed typo in UPGRADE-2.2
fixed typo
RedisProfilerStorage wrong db-number/index-number selected
[2.3] [DomCrawler] adds schema relative URL support to link
[DependencyInjection] added a test for the previous merge (refs symfony#7261)
Unset loading[$id] in ContainerBuilder on exception
Default validation message translation fix.
remove() should not use deprecated getParent() so it does not trigger deprecation internally
adjust routing tests to not use prefix in addCollection
add test for uniqueness of resources
added tests for addDefaults, addRequirements, addOptions
adjust RouteCollectionTest for the addCollection change and refactor the tests to only skip the part that really needs the config component
added tests for remove() that wasnt covered yet and special route name
...
When I used composer to get Translator for my Behat installation the I found line 131 missing a semi-colon. The original function looks like this:
public function setFallbackLocale($locales)
{
$this->setFallbackLocales(is_array($locales) ? $locales : array($locales))
}
I added a semi-colon to the line and everything works well. The line should look like the following:
$this->setFallbackLocales(is_array($locales) ? $locales : array($locales));
The text was updated successfully, but these errors were encountered: