db = $db; } public function createDatabaseReflection(): DatabaseReflectionInterface { return new SqliteDatabaseReflection($this->db, $this); } public function createTableReflection(string $table): TableReflectionInterface { return new SqliteTableReflection($this->db, $table); } }