| 1 | <?php namespace Nord\Lumen\Doctrine\ORM\Configuration; |
||
| 5 | class ConnectionConfiguration |
||
| 6 | { |
||
| 7 | |||
| 8 | /** |
||
| 9 | * @var ConfigurationAdapter |
||
| 10 | */ |
||
| 11 | private $adapter; |
||
| 12 | |||
| 13 | |||
| 14 | /** |
||
| 15 | * ConnectionConfiguration constructor. |
||
| 16 | * |
||
| 17 | * @param ConfigurationAdapter $adapter |
||
| 18 | */ |
||
| 19 | public function __construct(ConfigurationAdapter $adapter) |
||
| 23 | |||
| 24 | |||
| 25 | /** |
||
| 26 | * @param array $config |
||
| 27 | * |
||
| 28 | * @return array |
||
| 29 | */ |
||
| 30 | public function map(array $config) |
||
| 34 | } |
||
| 35 |