/**
  * @return Kdyby\Doctrine\Connection
  */
 public function createServiceDoctrine__default__connection()
 {
     $service = Kdyby\Doctrine\Connection::create(array('dbname' => 'tests', 'host' => '127.0.0.1', 'port' => NULL, 'user' => 'root', 'password' => '880609Fuca', 'charset' => 'UTF8', 'driver' => 'pdo_mysql', 'driverClass' => NULL, 'options' => NULL, 'path' => NULL, 'memory' => NULL, 'unix_socket' => NULL, 'platformService' => NULL, 'defaultTableOptions' => array(), 'debug' => FALSE), $this->getService('doctrine.default.dbalConfiguration'), $this->getService('events.manager'), array('enum' => 'Kdyby\\Doctrine\\Types\\Enum', 'point' => 'Kdyby\\Doctrine\\Types\\Point', 'lineString' => 'Kdyby\\Doctrine\\Types\\LineString', 'multiLineString' => 'Kdyby\\Doctrine\\Types\\MultiLineString', 'polygon' => 'Kdyby\\Doctrine\\Types\\Polygon', 'multiPolygon' => 'Kdyby\\Doctrine\\Types\\MultiPolygon', 'geometryCollection' => 'Kdyby\\Doctrine\\Types\\GeometryCollection', 'MotivationEntryType' => 'App\\Model\\Misc\\Enum\\MotivationEntryType'), array('enum' => 'enum', 'point' => 'point', 'lineString' => 'lineString', 'multiLineString' => 'multiLineString', 'polygon' => 'polygon', 'multiPolygon' => 'multiPolygon', 'geometryCollection' => 'geometryCollection', 'MotivationEntryType' => 'MotivationEntryType'));
     if (!$service instanceof Kdyby\Doctrine\Connection) {
         throw new Nette\UnexpectedValueException('Unable to create service \'doctrine.default.connection\', value returned by factory is not Kdyby\\Doctrine\\Connection type.');
     }
     return $service;
 }
 /**
  * @return Kdyby\Doctrine\Connection
  */
 public function createServiceDoctrine__default__connection()
 {
     $service = Kdyby\Doctrine\Connection::create(array('dbname' => 'doctrine_devel', 'host' => '127.0.0.1', 'port' => NULL, 'user' => 'root', 'password' => 'daryl', 'charset' => 'UTF8', 'driver' => 'pdo_mysql', 'driverClass' => NULL, 'options' => NULL, 'path' => NULL, 'memory' => NULL, 'unix_socket' => NULL, 'platformService' => NULL, 'defaultTableOptions' => array(), 'schemaFilter' => NULL, 'debug' => FALSE), $this->getService('doctrine.default.dbalConfiguration'), $this->getService('doctrine.default.evm'));
     if (!$service instanceof Kdyby\Doctrine\Connection) {
         throw new Nette\UnexpectedValueException('Unable to create service \'doctrine.default.connection\', value returned by factory is not Kdyby\\Doctrine\\Connection type.');
     }
     $service->setSchemaTypes(array('enum' => 'enum', 'point' => 'point', 'lineString' => 'lineString', 'multiLineString' => 'multiLineString', 'polygon' => 'polygon', 'multiPolygon' => 'multiPolygon', 'geometryCollection' => 'geometryCollection'));
     $service->setDbalTypes(array('enum' => 'Kdyby\\Doctrine\\Types\\Enum', 'point' => 'Kdyby\\Doctrine\\Types\\Point', 'lineString' => 'Kdyby\\Doctrine\\Types\\LineString', 'multiLineString' => 'Kdyby\\Doctrine\\Types\\MultiLineString', 'polygon' => 'Kdyby\\Doctrine\\Types\\Polygon', 'multiPolygon' => 'Kdyby\\Doctrine\\Types\\MultiPolygon', 'geometryCollection' => 'Kdyby\\Doctrine\\Types\\GeometryCollection'));
     $panel = $this->getService('doctrine.default.diagnosticsPanel')->bindConnection($service);
     return $service;
 }