Test Failed
Pull Request — master (#3)
by
unknown
05:32 queued 02:06
created
src/DependencyInjection/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,10 +31,10 @@
 block discarded – undo
31 31
 
32 32
         $treeBuilder->getRootNode()
33 33
             ->beforeNormalization()
34
-                ->ifTrue(static function ($v) {
34
+                ->ifTrue(static function($v) {
35 35
                     return is_array($v) && !array_key_exists('connections', $v);
36 36
                 })
37
-                ->then(static function ($v) {
37
+                ->then(static function($v) {
38 38
                     $connection = [];
39 39
                     foreach ($v as $key => $value) {
40 40
                         $connection[$key] = $v[$key];
Please login to merge, or discard this patch.
src/Config/AnnotationConfigFactory.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,12 +54,12 @@
 block discarded – undo
54 54
             $config[$tableName] = [
55 55
                 'primary_key' => $metadata->identifier,
56 56
                 'fields' => [],
57
-	    ];
57
+        ];
58 58
 
59
-	    if ($classAnnotation->truncate) {
59
+        if ($classAnnotation->truncate) {
60 60
                 $config[$tableName]['truncate'] = true;
61
-		continue;
62
-	    }
61
+        continue;
62
+        }
63 63
 
64 64
             foreach ($metadata->fieldMappings as $fieldName => $fieldMapping) {
65 65
                 if (in_array($fieldName, $metadata->identifier)) {
Please login to merge, or discard this patch.