Skip to content

Commit

Permalink
Update FeatureContext::$result and FeatureContext::$email_sends p…
Browse files Browse the repository at this point in the history
…roperty visibility to protected (#170)
  • Loading branch information
thelovekesh authored May 8, 2023
1 parent ea27e6e commit 92361ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Context/FeatureContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ class FeatureContext implements SnippetAcceptingContext {
/**
* The result of the last command run with `When I run` or `When I try`. Lives until the end of the scenario.
*/
private $result;
protected $result;

/**
* The number of emails sent by the last command run with `When I run` or `When I try`. Lives until the end of the scenario.
*/
private $email_sends;
protected $email_sends;

/**
* The current working directory for scenarios that have a "Given a WP installation" or "Given an empty directory" step. Variable RUN_DIR. Lives until the end of the scenario.
Expand Down

0 comments on commit 92361ff

Please sign in to comment.