Skip to content

Commit

Permalink
Merge commit 'refs/pull/3953/head' of github.com:zendframework/zf2 in…
Browse files Browse the repository at this point in the history
…to hotfix/camel-case
  • Loading branch information
Maks3w committed Mar 5, 2013
2 parents 1f94717 + e656bac commit 886029b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions library/Zend/I18n/View/Helper/DateFormat.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public function getTimezone()
* @param string $locale
* @return DateFormat
*/
public function setlocale($locale)
public function setLocale($locale)
{
$this->locale = (string) $locale;
return $this;
Expand All @@ -88,7 +88,7 @@ public function setlocale($locale)
*
* @return string|null
*/
public function getlocale()
public function getLocale()
{
if ($this->locale === null) {
$this->locale = Locale::getDefault();
Expand All @@ -115,7 +115,7 @@ public function __invoke(
$pattern = null
) {
if ($locale === null) {
$locale = $this->getlocale();
$locale = $this->getLocale();
}

$timezone = $this->getTimezone();
Expand Down

0 comments on commit 886029b

Please sign in to comment.