Skip to content

Commit

Permalink
Fix: Reduce visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Feb 27, 2024
1 parent 417181f commit 6cd8160
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion tests/unit/Moment/MomentBritishEnglishLocaleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class MomentBritishEnglishLocaleTest extends TestCase
{
public function setUp(): void
protected function setUp(): void
{
Moment::setLocale('en_GB');
}
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Moment/MomentCanadianEnglishLocaleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

class MomentCanadianEnglishLocaleTest extends TestCase
{
public function setUp(): void
protected function setUp(): void
{
Moment::setLocale('en_CA');
}
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Moment/MomentCanadianFrenchLocaleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

class MomentCanadianFrenchLocaleTest extends TestCase
{
public function setUp(): void
protected function setUp(): void
{
Moment::setLocale('fr_CA');
}
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Moment/MomentEsperantoLocaleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class MomentEsperantoLocaleTest extends TestCase
{
public function setUp(): void
protected function setUp(): void
{
Moment::setLocale('eo');
}
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Moment/MomentFrenchLocaleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class MomentFrenchLocaleTest extends TestCase
{
public function setUp(): void
protected function setUp(): void
{
Moment::setLocale('fr_FR');
}
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Moment/MomentGermanLocaleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class MomentGermanLocaleTest extends TestCase
{
public function setUp(): void
protected function setUp(): void
{
Moment::setLocale('de_DE');
}
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Moment/MomentLatvianLocaleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class MomentLatvianLocaleTest extends TestCase
{
public function setUp(): void
protected function setUp(): void
{
Moment::setLocale('lv_LV');
}
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Moment/MomentPolishLocaleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class MomentPolishLocaleTest extends TestCase
{
public function setUp(): void
protected function setUp(): void
{
Moment::setLocale('pl_PL');
}
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Moment/MomentRussianLocaleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class MomentRussianLocaleTest extends TestCase
{
public function setUp(): void
protected function setUp(): void
{
Moment::setLocale('ru_RU');
}
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Moment/MomentSimilarLocaleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class MomentSimilarLocaleTest extends MomentBritishEnglishLocaleTest
/**
* @throws MomentException
*/
public function setUp(): void
protected function setUp(): void
{
Moment::setLocale('en', true);
}
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Moment/MomentTurkishLocaleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

class MomentTurkishLocaleTest extends TestCase
{
public function setUp(): void
protected function setUp(): void
{
Moment::setLocale('tr_TR');
}
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Moment/MomentUkrainianLocaleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class MomentUkrainianLocaleTest extends TestCase
{
public function setUp(): void
protected function setUp(): void
{
Moment::setLocale('uk_UA');
}
Expand Down

0 comments on commit 6cd8160

Please sign in to comment.