34 lines
		
	
	
		
			635 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			635 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?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;
 | 
						|
    }
 | 
						|
}
 |