Created
February 7, 2013 00:22
-
-
Save midned/4727221 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$resolver = new Illuminate\Database\ConnectionResolver; | |
$resolver->setDefaultConnection('default'); | |
$factory = new Illuminate\Database\Connectors\ConnectionFactory; | |
$connection = $factory->make(array( | |
'host' => 'localhost', | |
'database' => 'foo', | |
'username' => 'root', | |
'password' => 'password', | |
)); | |
$resolver->addConnection('default', $connection); | |
Illuminate\Database\Eloquent\Model::setConnectionResolver($resolver); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment