style fixes
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
logs
|
logs
|
||||||
.phpunit.result.cache
|
.phpunit.result.cache
|
||||||
|
.php-cs-fixer.cache
|
@ -31,7 +31,7 @@ $GLOBALS['pg4wp_conn'] = false;
|
|||||||
*/
|
*/
|
||||||
function wpsqli_init()
|
function wpsqli_init()
|
||||||
{
|
{
|
||||||
return new class {
|
return new class () {
|
||||||
public $sslkey;
|
public $sslkey;
|
||||||
public $sslcert;
|
public $sslcert;
|
||||||
public $sslca;
|
public $sslca;
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
<?php declare(strict_types=1);
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
if (!defined('ABSPATH')) {
|
if (!defined('ABSPATH')) {
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
<?php declare(strict_types=1);
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
if (!defined('ABSPATH')) {
|
if (!defined('ABSPATH')) {
|
||||||
@ -31,4 +33,15 @@ final class rewriteTest extends TestCase
|
|||||||
$postgresql = pg4wp_rewrite($sql);
|
$postgresql = pg4wp_rewrite($sql);
|
||||||
$this->assertSame($postgresql, $expected);
|
$this->assertSame($postgresql, $expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function setUp(): void
|
||||||
|
{
|
||||||
|
global $wpdb;
|
||||||
|
$wpdb = new class () {
|
||||||
|
public $categories = "wp_categories";
|
||||||
|
public $comments = "wp_comments";
|
||||||
|
public $prefix = "wp_";
|
||||||
|
public $options = "wp_options";
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
@ -1,4 +1,6 @@
|
|||||||
<?php declare(strict_types=1);
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
if (!defined('ABSPATH')) {
|
if (!defined('ABSPATH')) {
|
||||||
@ -13,7 +15,7 @@ require_once __DIR__ . "/../pg4wp/db.php";
|
|||||||
|
|
||||||
final class verifyAgainstStubsTest extends TestCase
|
final class verifyAgainstStubsTest extends TestCase
|
||||||
{
|
{
|
||||||
const STUBS_DIRECTORY = __DIR__ . '/stubs';
|
public const STUBS_DIRECTORY = __DIR__ . '/stubs';
|
||||||
|
|
||||||
public function test_verify_against_stubs()
|
public function test_verify_against_stubs()
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user