Completed
Push — master ( 68e6c3...01f2bc )
by Joe
02:10
created
src/WmiScripting/Win32Model.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -238,7 +238,7 @@
 block discarded – undo
238 238
      */
239 239
     protected function constantToStringCallback($constant_class)
240 240
     {
241
-        return function ($constant) use ($constant_class) {
241
+        return function($constant) use ($constant_class) {
242 242
             if (trim($type = call_user_func_array($constant_class . "::string", [$constant])) === '') {
243 243
                 return "[{$constant}] - UNKNOWN";
244 244
             }
Please login to merge, or discard this patch.
src/WmiScripting/Support/ApiObjects/SWbemObjectSet.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 
54 54
     public function instantiateModels(Win32Model $model): ObjectSet
55 55
     {
56
-        $this->set = $this->set->map(function (ObjectItem $item) use ($model) {
56
+        $this->set = $this->set->map(function(ObjectItem $item) use ($model) {
57 57
             $item->instantiateWin32Model($model);
58 58
             return $item;
59 59
         });
Please login to merge, or discard this patch.