1 Star 2 Fork 3

APIJSON/hyperf-APIJSON

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
StatementComplete.php 876 Bytes
一键复制 编辑 原始数据 按行查看 历史
<?php
declare(strict_types=1);
/**
* @author kvnZero
* @contact kvnZero@github.com
* @time 2021/12/4 5:25 下午
*/
namespace App\Event;
class StatementComplete
{
/**
* The database connection instance.
*
* @var \Hyperf\Database\Connection
*/
public $connection;
/**
* The query result
*
* @var array|false
*/
public $result;
/**
* The PDO statement.
*
* @var \PDOStatement
*/
public $statement;
/**
* Create a new event instance.
*
* @param \Hyperf\Database\Connection $connection
* @param array|false $result
* @param \PDOStatement $statement
*/
public function __construct($connection, $result, $statement)
{
$this->statement = $statement;
$this->result = $result;
$this->connection = $connection;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/APIJSON/hyperf-APIJSON.git
git@gitee.com:APIJSON/hyperf-APIJSON.git
APIJSON
hyperf-APIJSON
hyperf-APIJSON
master

搜索帮助