This file contains hidden or 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 | |
return array( | |
'doctrine' => array( | |
'connection' => array( | |
'orm_default' => array( | |
'driverClass' => 'Doctrine\DBAL\Driver\PDOMySql\Driver', | |
'params' => array( | |
'host' => 'localhost', | |
'port' => '3306', |
This file contains hidden or 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 | |
namespace Livraria\Entity; | |
class Configurator { | |
public static function configure($target, $options, $tryCall=false) | |
{ | |
if( !is_object($target)){ | |
throw new \Exception('Target should be an objet'); |