File "ConnectorInterface.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/laravel/framework/src/Illuminate/View/Compilers/ConnectorInterface.php
File size: 240 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Illuminate\Database\Connectors;
interface ConnectorInterface
{
/**
* Establish a database connection.
*
* @param array $config
* @return \PDO
*/
public function connect(array $config);
}