MySQLRunnable implements ISQLRunnable
Table of Contents
$repo | SQL Repository | ISQLRepository |
---|---|---|
$run | On Execute | Closure |
__construct() | mixed | |
getConnection() | Retrieve the database connection that should be used to execute the code. | IDBConnection |
run() | Execute the supplied closure | void |
Properties
$repo
SQL Repository
private
ISQLRepository
$repo
$run
On Execute
private
Closure
$run
Methods
__construct()
public
__construct(
$repo :
ISQLRepository
, $run :
Closure
)
: mixed
Parameters
- $repo : ISQLRepository
Repo the run() method should run against.
- $run : Closure
Code to execute when run() is called.
Return values
mixedgetConnection()
Retrieve the database connection that should be used to execute the code.
public
getConnection(
)
: IDBConnection
Return values
IDBConnection —connection
run()
Execute the supplied closure
public
run(
)
: void