Completed
Push — master ( 1768c8...189bb6 )
by Matthew
03:41
created
src/Loader/AbstractLoader.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,10 +10,10 @@
 block discarded – undo
10 10
     use RedisAwareTrait;
11 11
 
12 12
     /**
13
-    * Flag whether or not the result is allowed to be cached
14
-    *
15
-    * @var boolean
16
-    */
13
+     * Flag whether or not the result is allowed to be cached
14
+     *
15
+     * @var boolean
16
+     */
17 17
 
18 18
     protected $cacheable = true;
19 19
     /**
Please login to merge, or discard this patch.
src/container.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -16,26 +16,26 @@
 block discarded – undo
16 16
 
17 17
 // Inflectors
18 18
 $container->inflector('Ps2alerts\Api\Contract\ConfigAwareInterface')
19
-          ->invokeMethod('setConfig', ['config']);
19
+            ->invokeMethod('setConfig', ['config']);
20 20
 $container->inflector('Ps2alerts\Api\Contract\DatabaseAwareInterface')
21
-          ->invokeMethod('setDatabaseDriver', ['Aura\Sql']);
21
+            ->invokeMethod('setDatabaseDriver', ['Aura\Sql']);
22 22
 $container->inflector('Ps2alerts\Api\Contract\LogAwareInterface')
23
-          ->invokeMethod('setLogDriver', ['Monolog\Logger']);
23
+            ->invokeMethod('setLogDriver', ['Monolog\Logger']);
24 24
 $container->inflector('Ps2alerts\Api\Contract\TemplateAwareInterface')
25
-          ->invokeMethod('setTemplateDriver', ['Twig_Environment']);
25
+            ->invokeMethod('setTemplateDriver', ['Twig_Environment']);
26 26
 $container->inflector('Ps2alerts\Api\Contract\RedisAwareInterface')
27
-          ->invokeMethod('setRedisDriver', ['redis']);
27
+            ->invokeMethod('setRedisDriver', ['redis']);
28 28
 
29 29
 $container->add('Ps2alerts\Api\Validator\AlertInputValidator');
30 30
 
31 31
 $container->add('Ps2alerts\Api\Repository\AlertRepository');
32 32
 
33 33
 $container->add('Ps2alerts\Api\Loader\Statistics\AlertStatisticsLoader')
34
-          ->withArgument('Ps2alerts\Api\Repository\AlertRepository')
35
-          ->withArgument('Ps2alerts\Api\Validator\AlertInputValidator');
34
+            ->withArgument('Ps2alerts\Api\Repository\AlertRepository')
35
+            ->withArgument('Ps2alerts\Api\Validator\AlertInputValidator');
36 36
 
37 37
 // Container Inflector
38 38
 $container->inflector('League\Container\ContainerAwareInterface')
39
-          ->invokeMethod('setContainer', [$container]);
39
+            ->invokeMethod('setContainer', [$container]);
40 40
 
41 41
 return $container;
Please login to merge, or discard this patch.