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 a45e3da commit 5feda5eCopy full SHA for 5feda5e
src/Symfony/Component/Intl/ResourceBundle/Util/ArrayAccessibleResourceBundle.php
@@ -32,16 +32,16 @@ public function __construct(\ResourceBundle $bundleImpl)
32
$this->bundleImpl = $bundleImpl;
33
}
34
35
- public function get($offset, $fallback = null)
+ public function get($offset)
36
{
37
- $value = $this->bundleImpl->get($offset, $fallback);
+ $value = $this->bundleImpl->get($offset);
38
39
return $value instanceof \ResourceBundle ? new static($value) : $value;
40
41
42
public function offsetExists($offset)
43
44
- return null !== $this->bundleImpl[$offset];
+ return null !== $this->bundleImpl->get($offset);
45
46
47
public function offsetGet($offset)
0 commit comments