Skip to content

Commit 92361ff

Browse files
authored
Update FeatureContext::$result and FeatureContext::$email_sends property visibility to protected (#170)
1 parent ea27e6e commit 92361ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Context/FeatureContext.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ class FeatureContext implements SnippetAcceptingContext {
2424
/**
2525
* The result of the last command run with `When I run` or `When I try`. Lives until the end of the scenario.
2626
*/
27-
private $result;
27+
protected $result;
2828

2929
/**
3030
* 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.
3131
*/
32-
private $email_sends;
32+
protected $email_sends;
3333

3434
/**
3535
* 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.

0 commit comments

Comments
 (0)