Skip to content

Commit

Permalink
cs fix
Browse files Browse the repository at this point in the history
Signed-off-by: nabim777 <nabinalemagar019@gmail.com>
  • Loading branch information
nabim777 committed Sep 20, 2024
1 parent 5ac712c commit 034a2c4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ public function before(BeforeScenarioScope $scope):void {
$environment = $scope->getEnvironment();

// Get all the contexts you need in this context
if($environment instanceof InitializedContextEnvironment) {
if ($environment instanceof InitializedContextEnvironment) {
$this->featureContext = $environment->getContext('FeatureContext');
}
}
Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/features/bootstrap/FeatureContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -1161,7 +1161,7 @@ public function before(BeforeScenarioScope $scope):void {
$environment = $scope->getEnvironment();

// Get all the contexts you need in this context
if($environment instanceof InitializedContextEnvironment) {
if ($environment instanceof InitializedContextEnvironment) {
$this->sharingContext = $environment->getContext('SharingContext');
$this->directUploadContext = $environment->getContext('DirectUploadContext');
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public function before(BeforeScenarioScope $scope):void {
$environment = $scope->getEnvironment();

// Get all the contexts you need in this context
if($environment instanceof InitializedContextEnvironment) {
if ($environment instanceof InitializedContextEnvironment) {
$this->featureContext = $environment->getContext('FeatureContext');
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public function before(BeforeScenarioScope $scope):void {
$environment = $scope->getEnvironment();

// Get all the contexts you need in this context
if($environment instanceof InitializedContextEnvironment) {
if ($environment instanceof InitializedContextEnvironment) {
$this->featureContext = $environment->getContext('FeatureContext');
}
}
Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/features/bootstrap/SharingContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public function before(BeforeScenarioScope $scope):void {
$environment = $scope->getEnvironment();

// Get all the contexts you need in this context
if($environment instanceof InitializedContextEnvironment) {
if ($environment instanceof InitializedContextEnvironment) {
$this->featureContext = $environment->getContext('FeatureContext');
}
}
Expand Down

0 comments on commit 034a2c4

Please sign in to comment.