Skip to content

Commit

Permalink
Merge pull request #71 from wp-cli/fix/wpcs-3.0-issues
Browse files Browse the repository at this point in the history
  • Loading branch information
swissspidy authored Aug 30, 2023
2 parents 058ab77 + db9a3b3 commit 5a9c605
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"wp-cli/wp-cli": "^2.5"
},
"require-dev": {
"wp-cli/wp-cli-tests": "^3.1"
"wp-cli/wp-cli-tests": "^4"
},
"config": {
"process-timeout": 7200,
Expand Down
2 changes: 1 addition & 1 deletion eval-command.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
return;
}

$wpcli_eval_autoloader = dirname( __FILE__ ) . '/vendor/autoload.php';
$wpcli_eval_autoloader = __DIR__ . '/vendor/autoload.php';
if ( file_exists( $wpcli_eval_autoloader ) ) {
require_once $wpcli_eval_autoloader;
}
Expand Down
1 change: 0 additions & 1 deletion src/EvalFile_Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,3 @@ private static function execute_eval( $file, $args, $use_include ) {
}
}
}

0 comments on commit 5a9c605

Please sign in to comment.