We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 508b043 commit 3682328Copy full SHA for 3682328
utils/behat-tags.php
@@ -130,7 +130,7 @@ function extension_tags( $features_folder = 'features' ) {
130
$feature_files = glob( $features_folder . DIRECTORY_SEPARATOR . '*.feature' );
131
if ( ! empty( $feature_files ) ) {
132
foreach ( $feature_files as $feature_file ) {
133
- $contents = (string) get_contents( $feature_file );
+ $contents = (string) file_get_contents( $feature_file );
134
if ( preg_match_all( '/@require-extension-[A-Za-z_]*/', $contents, $matches ) ) {
135
$extension_tags = array_merge( $extension_tags, $matches[0] );
136
}
0 commit comments