15 lines
410 B
PHP
15 lines
410 B
PHP
<?php
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
return [
|
|
\Common\Concept\Database::class => function(ContainerInterface $container) {
|
|
$settings = $container->get('databases')->default;
|
|
return new \Contabilidad\Implement\Database\MySQL(
|
|
$settings->host->name,
|
|
$settings->user->name,
|
|
$settings->user->password,
|
|
$settings->name
|
|
);
|
|
}
|
|
];
|