24 lines
384 B
PHP
Executable File
24 lines
384 B
PHP
Executable File
<?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)
|
|
{
|
|
$mapping = function($r)
|
|
{
|
|
$r = (object) $r;
|
|
|
|
return $r->name;
|
|
};
|
|
|
|
return array_map($mapping, $results);
|
|
}
|
|
|
|
}
|