1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php namespace Illuminate\Database\Query\Processors;
class SQLiteProcessor extends Processor {
/** * Process the results of a column listing query. * * @param array $results * @return array */ public function processColumnListing($results) { return array_values(array_map(function($r) { return $r->name; }, $results)); }
}
|