Skip to content

Commit

Permalink
change method visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorazil committed Oct 30, 2023
1 parent 2ca5c0a commit f5accfd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/acceptance/BaseAcceptanceCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// phpcs:disable Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps
abstract class BaseAcceptanceCest
{
public function _before(AcceptanceTester $I): void
protected function _before(AcceptanceTester $I): void
{
$I->amOnPage('/');
$I->setCookie('SELENIUM', 'SELENIUM', [
Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/EventCashbookCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class EventCashbookCest extends BaseAcceptanceCest
protected AcceptanceTester $I;
private string $eventName;

public function _before(AcceptanceTester $I): void
protected function _before(AcceptanceTester $I): void
{
parent::_before($I);

Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/PaymentCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class PaymentCest extends BaseAcceptanceCest
protected AcceptanceTester $I;
protected Payment $page;

public function _before(AcceptanceTester $I): void
protected function _before(AcceptanceTester $I): void
{
parent::_before($I);

Expand Down

0 comments on commit f5accfd

Please sign in to comment.