Version 3 #1

Manually merged
timw4mail merged 47 commits from develop into master 2020-04-23 18:39:27 -04:00
3 changed files with 13 additions and 1 deletions
Showing only changes of commit 56c929088a - Show all commits

View File

@ -204,7 +204,7 @@ interface DriverInterface {
* @param string $where
* @return int|null
*/
public function updateBatch(string $table, $data, $where);
public function updateBatch(string $table, $data, $where): ?int;
/**
* Get the SQL class for the current driver

View File

@ -119,6 +119,12 @@ SQL;
public function testBadPreparedStatement()
{
if (is_a($this, \UnitTestCase::class))
{
$this->markTestSkipped();
return;
}
$this->expectException(TypeError::class);
$sql = <<<SQL

View File

@ -149,6 +149,12 @@ SQL;
public function testBadPreparedStatement()
{
if (is_a($this, \UnitTestCase::class))
{
$this->markTestSkipped();
return;
}
$this->expectException(TypeError::class);
$sql = <<<SQL