Failed Conditions
Pull Request — master (#8)
by Donatas
06:12
created
Behat/StepTimeLoggerExtension/ServiceContainer/StepTimeLoggerExtension.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,9 +18,9 @@
 block discarded – undo
18 18
 {
19 19
     const CONFIG_KEY = 'steptimelogger';
20 20
 
21
-     /**
22
-     * {@inheritdoc}
23
-     */
21
+        /**
22
+         * {@inheritdoc}
23
+         */
24 24
     public function getConfigKey()
25 25
     {
26 26
         return self::CONFIG_KEY;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
      */
86 86
     private function getOutputTypeInitializer()
87 87
     {
88
-        return function ($value) {
88
+        return function($value) {
89 89
             $value = empty($value) ? ['console'] : $value;
90 90
             return is_array($value) ? $value : [$value];
91 91
         };
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      */
97 97
     private function getOutputTypeValidator()
98 98
     {
99
-        return function ($value) {
99
+        return function($value) {
100 100
             $allowed = ['console', 'csv'];
101 101
             $invalid = array_diff($value, $allowed);
102 102
             
Please login to merge, or discard this patch.