HosipLan

Untitled

Aug 11th, 2013
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. class IdiormConnectionFactory extends \Nette\Object
  2. {
  3.     public static function create()
  4.     {
  5.         ORM::configure('mysql:host=localhost;dbname=language_exchange');
  6.         ORM::configure('username', 'root');
  7.         ORM::configure('password', 'root');
  8.        
  9.         return ORM::get_db();
  10.     }
  11. }
  12.  
  13. ###
  14.  
  15. services:
  16.     idion: IdiormConnectionFactory::create()
Advertisement
Add Comment
Please, Sign In to add comment