Completed
Push — master ( 2ef1bb...2d3b10 )
by Mauro
01:55
created
app/dependencies.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 $container = $app->getContainer();
6 6
 
7 7
 // PDO database library
8
-$container['db'] = function (ContainerInterface $c) {
8
+$container['db'] = function(ContainerInterface $c) {
9 9
     $settings = $c->get('settings')['db'];
10 10
     $pdo = new PDO(
11 11
         'mysql:host=' . $settings['host'] . ';dbname=' . $settings['dbname'],
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 };
20 20
 
21 21
 // Logger
22
-$container['logger'] = function (ContainerInterface $c) {
22
+$container['logger'] = function(ContainerInterface $c) {
23 23
     $settings = $c->get('settings')['logger'];
24 24
     if ($settings['enabled'] === false) {
25 25
         return false;
Please login to merge, or discard this patch.