bkdotcom/PHPDebugConsole

View on GitHub
src/Debug/Collector/MySqli/ExecuteQueryTrait_php8.2.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

/**
 * This file is part of PHPDebugConsole
 *
 * @package   PHPDebugConsole
 * @author    Brad Kent <bkfake-github@yahoo.com>
 * @license   http://opensource.org/licenses/MIT MIT
 * @copyright 2014-2024 Brad Kent
 * @version   v3.1
 */

namespace bdk\Debug\Collector\MySqli;

use mysqli_result;

/**
 * Define HP 8.2's mysqli::execute_query method
 *
 * @phpcs:disable Generic.Classes.DuplicateClassName.Found
 * @phpcs:disable PSR1.Methods.CamelCapsMethodName.NotCamelCaps
 */
trait ExecuteQueryTrait
{
    /**
     * {@inheritDoc}
     */
    public function execute_query(string $query, ?array $params = null): mysqli_result|bool // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter
    {
        return $this->profileCall('execute_query', $query, \func_get_args());
    }
}