Added vendor/ directory for Composer's installed files
This commit is contained in:
23
vendor/illuminate/database/Query/Processors/SQLiteProcessor.php
vendored
Executable file
23
vendor/illuminate/database/Query/Processors/SQLiteProcessor.php
vendored
Executable file
@ -0,0 +1,23 @@
|
||||
<?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);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user