Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
sukhwinder33445 committed Aug 30, 2023
1 parent 1938daf commit 5101d7c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
8 changes: 5 additions & 3 deletions src/GettextTranslator.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,13 @@ public function getDefaultDomain()
*
* @return $this
*/
public function setDefaultDomain($defaultDomain)
{
$this->defaultDomain = $defaultDomain;
public function setDefaultDomain ( $defaultDomain)
{$this->defaultDomain = $defaultDomain;

return $this;



}

/**
Expand Down
7 changes: 4 additions & 3 deletions src/Locale.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ public function getDefaultLocale()
*
* @return $this
*/
public function setDefaultLocale($defaultLocale)
{
$this->defaultLocale = $defaultLocale;
public function setDefaultLocale($defaultLocale){

$this->defaultLocale
= $defaultLocale;

return $this;
}
Expand Down

0 comments on commit 5101d7c

Please sign in to comment.