Skip to content

Commit 5e1cd08

Browse files
committed
Lint fixes
1 parent e6bd8a5 commit 5e1cd08

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Context/GivenStepDefinitions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public function given_a_specific_file( $path, $type, PyStringNode $content ) {
124124
*
125125
* ```
126126
* Scenario: My example scenario
127-
* Given "WordPress" replaced with "Wordpress" in the readme.html file
127+
* Given "Foo" replaced with "Bar" in the readme.html file
128128
* ...
129129
* ```
130130
*

src/Context/ThenStepDefinitions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ public function then_a_specific_file_folder_should_exist( $path, $type, $strictl
393393
$path = $this->variables['RUN_DIR'] . "/$path";
394394
}
395395

396-
$exists = static function ($path ) use ( $type ) {
396+
$exists = static function ( $path ) use ( $type ) {
397397
// Clear the stat cache for the path first to avoid
398398
// potentially inaccurate results when files change outside of PHP.
399399
// See https://www.php.net/manual/en/function.clearstatcache.php

0 commit comments

Comments
 (0)