mirror of
https://github.com/dg/dibi.git
synced 2025-08-12 09:04:24 +02:00
coding style: TRUE/FALSE/NULL -> true/false/null
This commit is contained in:
@@ -12,7 +12,7 @@ $conn = new Dibi\Connection($config);
|
||||
$arr = [
|
||||
'title' => 'Super Product',
|
||||
'price' => 12,
|
||||
'brand' => NULL,
|
||||
'brand' => null,
|
||||
];
|
||||
|
||||
$fluent = $conn->insert('table', $arr)
|
||||
@@ -23,7 +23,7 @@ Assert::same(
|
||||
(string) $fluent
|
||||
);
|
||||
|
||||
$fluent->setFlag('IGNORE', FALSE);
|
||||
$fluent->setFlag('IGNORE', false);
|
||||
|
||||
Assert::same(
|
||||
reformat('INSERT DELAYED INTO [table] ([title], [price], [brand]) VALUES (\'Super Product\', 12, NULL)'),
|
||||
|
Reference in New Issue
Block a user