PATH:
home
/
lab2454c
/
bancmils.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Database
/
Query
/
Processors
<?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); } }
[+]
..
[-] SQLiteProcessor.php
[edit]
[-] Processor.php
[edit]
[-] PostgresProcessor.php
[edit]
[-] MySqlProcessor.php
[edit]
[-] .htaccess
[edit]
[-] SqlServerProcessor.php
[edit]