I expected the fetch() method to return the inserted row, as the row is actually inserted into the database.
I am getting the output bool(false) instead of the inserted row.
$db = new Database([
'type' => 'Mysql',
'user' => 'root',
'pass' => 'root',
'host' => 'localhost',
'db' => 'dt'
]);
$insertedRow = $db->insert('users_test1', ['name' => 'John Doe'], );
var_dump($insertedRow->fetch());