1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?php
namespace Illuminate\Database\Events;
class StatementPrepared { /** * The database connection instance. * * @var \Illuminate\Database\Connection */ public $connection;
/** * The PDO statement. * * @var \PDOStatement */ public $statement;
/** * Create a new event instance. * * @param \Illuminate\Database\Connection $connection * @param \PDOStatement $statement * @return void */ public function __construct($connection, $statement) { $this->statement = $statement; $this->connection = $connection; } }
|