LaysenseAuth/vendor/illuminate/database/Query/Processors/SQLiteProcessor.php

20 lines
405 B
PHP
Raw Normal View History

2024-08-09 19:46:39 +05:30
<?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);
}
}