mirror of
https://github.com/dg/dibi.git
synced 2025-07-31 03:10:14 +02:00
coding style: TRUE/FALSE/NULL -> true/false/null
This commit is contained in:
@@ -14,13 +14,13 @@ dibi::connect([
|
||||
|
||||
|
||||
// some variables
|
||||
$cond1 = TRUE;
|
||||
$cond2 = FALSE;
|
||||
$cond1 = true;
|
||||
$cond2 = false;
|
||||
$foo = -1;
|
||||
$bar = 2;
|
||||
|
||||
// conditional variable
|
||||
$name = $cond1 ? 'K%' : NULL;
|
||||
$name = $cond1 ? 'K%' : null;
|
||||
|
||||
// if & end
|
||||
dibi::test('
|
||||
|
Reference in New Issue
Block a user