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