File "SQLiteProcessor.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/laravel/framework/src/SQLiteProcessor.php
File size: 405 bytes
MIME-type: text/x-php
Charset: utf-8
<?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_map(function ($result) {
return ((object) $result)->name;
}, $results);
}
}