style fixes

This commit is contained in:
mattbucci
2024-01-07 23:07:50 +00:00
parent 021aa6d106
commit 94259e408b
10 changed files with 99 additions and 81 deletions

View File

@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php
declare(strict_types=1);
use PHPUnit\Framework\TestCase;
if (!defined('ABSPATH')) {
@ -35,10 +37,10 @@ final class parseTest extends TestCase
protected function setUp(): void
{
global $wpdb;
$wpdb = new class() {
$wpdb = new class () {
public $options = "wp_options";
public $categories = "wp_categories";
};
}
}
}