Test Setup Failed
Branch master (bac8e9)
by Joe
02:54
created
src/WmiScripting/Support/ApiObjects/SWbemObjectSet.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,8 +54,8 @@
 block discarded – undo
54 54
     public function instantiateModels(Win32Model $model): ObjectSet
55 55
     {
56 56
         $this->set = $this->set->map(function (ObjectItem $item) use ($model) {
57
-             $item->instantiateWin32Model($model);
58
-             return $item;
57
+                $item->instantiateWin32Model($model);
58
+                return $item;
59 59
         });
60 60
 
61 61
         return $this;
Please login to merge, or discard this patch.
src/WmiScripting/config/connections.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,17 +1,17 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return [
4
-  'default' => 'local',
4
+    'default' => 'local',
5 5
 
6
-  'servers' => [
7
-      'local' => [
8
-          'server'          => '.',
9
-          'namespace'       => 'Root\CIMv2',
10
-          'user'            => null,
11
-          'password'        => null,
12
-          'locale'          => null,
13
-          'authority'       => null,
14
-          'security_flags'  => null,
15
-      ]
16
-  ]
6
+    'servers' => [
7
+        'local' => [
8
+            'server'          => '.',
9
+            'namespace'       => 'Root\CIMv2',
10
+            'user'            => null,
11
+            'password'        => null,
12
+            'locale'          => null,
13
+            'authority'       => null,
14
+            'security_flags'  => null,
15
+        ]
16
+    ]
17 17
 ];
Please login to merge, or discard this patch.