Completed
Push — master ( 456d85...166e62 )
by Alexis
01:28
created
app/dependencies.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,25 +21,25 @@  discard block
 block discarded – undo
21 21
 $capsule->setAsGlobal();
22 22
 $capsule->bootEloquent();
23 23
 
24
-$container['db'] = function () use ($capsule) {
24
+$container['db'] = function() use ($capsule) {
25 25
     return $capsule;
26 26
 };
27 27
 
28
-$container['auth'] = function () {
28
+$container['auth'] = function() {
29 29
     $sentinel = new Sentinel(new SentinelBootstrapper(__DIR__ . '/config/sentinel.php'));
30 30
 
31 31
     return $sentinel->getSentinel();
32 32
 };
33 33
 
34
-$container['flash'] = function () {
34
+$container['flash'] = function() {
35 35
     return new Messages();
36 36
 };
37 37
 
38
-$container['validator'] = function () {
38
+$container['validator'] = function() {
39 39
     return new Validator();
40 40
 };
41 41
 
42
-$container['view'] = function ($container) {
42
+$container['view'] = function($container) {
43 43
     $config = $container['config'];
44 44
 
45 45
     $view = new Twig(
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     return $view;
65 65
 };
66 66
 
67
-$container['monolog'] = function ($container) {
67
+$container['monolog'] = function($container) {
68 68
     $config = $container['config']['monolog'];
69 69
 
70 70
     $logger = new Logger($config['name']);
Please login to merge, or discard this patch.