Bug fix for checks, bug fix in config other, test host

Add test host soba-dev.tequila.jp, others will be added

config.other had errors with double define a constant

Supress phan/phpstan errors for ...array calls in methods
This commit is contained in:
Clemens Schwaighofer
2021-12-01 10:58:23 +09:00
parent 6001934d9c
commit 4bac10bb42
4 changed files with 12 additions and 2 deletions

View File

@@ -281,7 +281,7 @@ class Basic
public function debugFor(string $type, string $flag): void
{
trigger_error('Method ' . __METHOD__ . ' is deprecated, use $basic->log->debugFor() or use \CoreLibs\Debug\Logging() class', E_USER_DEPRECATED);
/** @phan-suppress-next-line PhanTypeMismatchArgumentReal @phpstan-ignore-next-line */
/** @phan-suppress-next-line PhanTypeMismatchArgumentReal, PhanParamTooFew @phpstan-ignore-next-line */
$this->log->debugFor(...[func_get_args()]);
}