• File: MySqlProcessor.php
  • Full Path: /home/masbinta/public_html/core/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/MySqlProcessor.php
  • File size: 411 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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 ($result) {
            return ((object) $result)->column_name;
        }, $results);
    }
}