mirror of
https://github.com/dg/dibi.git
synced 2025-08-27 15:59:49 +02:00
DibiRow: shows suggestions for missing columns
This commit is contained in:
@@ -24,16 +24,26 @@ Assert::true(isset($row['title']));
|
||||
// missing
|
||||
Assert::error(function () use ($row) {
|
||||
$x = $row->missing;
|
||||
}, E_NOTICE, 'Undefined property: DibiRow::$missing');
|
||||
}, E_USER_NOTICE, "Attempt to read missing column 'missing'.");
|
||||
|
||||
Assert::error(function () use ($row) {
|
||||
$x = $row['missing'];
|
||||
}, E_NOTICE, 'Undefined property: DibiRow::$missing');
|
||||
}, E_USER_NOTICE, "Attempt to read missing column 'missing'.");
|
||||
|
||||
Assert::false(isset($row->missing));
|
||||
Assert::false(isset($row['missing']));
|
||||
|
||||
|
||||
// suggestions
|
||||
Assert::error(function () use ($row) {
|
||||
$x = $row->tilte;
|
||||
}, E_USER_NOTICE, "Attempt to read missing column 'tilte', did you mean 'title'?");
|
||||
|
||||
Assert::error(function () use ($row) {
|
||||
$x = $row['tilte'];
|
||||
}, E_USER_NOTICE, "Attempt to read missing column 'tilte', did you mean 'title'?");
|
||||
|
||||
|
||||
// to array
|
||||
Assert::same(['product_id' => 1, 'title' => 'Chair'], iterator_to_array($row));
|
||||
Assert::same(['product_id' => 1, 'title' => 'Chair'], $row->toArray());
|
||||
|
Reference in New Issue
Block a user