mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
17 lines
379 B
PHP
17 lines
379 B
PHP
|
<?php
|
||
|
|
||
|
namespace Xentral\Components\Database\Parser;
|
||
|
|
||
|
interface ParserInterface
|
||
|
{
|
||
|
/**
|
||
|
* @param string $statement
|
||
|
* @param array $values
|
||
|
*
|
||
|
* @return array
|
||
|
* - Array key 'statement' contains the corrected statement
|
||
|
* - Array key 'values' contains the corrected bind values
|
||
|
*/
|
||
|
public function rebuild($statement, array $values = []);
|
||
|
}
|