Completed
Push — master ( 4de83b...a247d4 )
by Mauro
02:00
created
app/dependencies.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  * @param ContainerInterface $c
12 12
  * @return PDO
13 13
  */
14
-$container['db'] = function (ContainerInterface $c) {
14
+$container['db'] = function(ContainerInterface $c) {
15 15
     $db = $c->get('settings')['db'];
16 16
     $database = sprintf('mysql:host=%s;dbname=%s', $db['host'], $db['dbname']);
17 17
     $pdo = new PDO($database, $db['user'], $db['pass']);
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
  * @param ContainerInterface $c
28 28
  * @return bool|Logger
29 29
  */
30
-$container['logger'] = function (ContainerInterface $c) {
30
+$container['logger'] = function(ContainerInterface $c) {
31 31
     $settings = $c->get('settings')['logger'];
32 32
     if ($settings['enabled'] === false) {
33 33
         return false;
Please login to merge, or discard this patch.