Skip to content

Commit

Permalink
CS/QA: use import use statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfnl committed Dec 16, 2023
1 parent 62be9c9 commit 85cffe2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion yoast-test-helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

use Yoast\WP\Test_Helper\Plugin;

define( 'YOAST_TEST_HELPER_FILE', __FILE__ );
define( 'YOAST_TEST_HELPER_DIR', dirname( YOAST_TEST_HELPER_FILE ) );
define( 'YOAST_TEST_HELPER_VERSION', '1.18-RC6' );
Expand All @@ -41,5 +43,5 @@
require __DIR__ . '/vendor/autoload.php';
}

$yoast_test_helper = new Yoast\WP\Test_Helper\Plugin();
$yoast_test_helper = new Plugin();
$yoast_test_helper->add_hooks();

0 comments on commit 85cffe2

Please sign in to comment.