Passed
Push — master ( 70801a...56c92e )
by Shiyu
01:15
created
src/Chips/Binding.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -65,12 +65,12 @@
 block discarded – undo
65 65
         $prefix && $prefix .= '/';
66 66
         foreach ($map as $cKey => $pName) {
67 67
             if (is_array($pName)) {
68
-                $this->bindPTKeys($options, $prefix . $cKey, $pName);
68
+                $this->bindPTKeys($options, $prefix.$cKey, $pName);
69 69
             } else {
70 70
                 $this->bound[spl_object_hash($options)][] =
71 71
                     $this->watching(
72
-                        $prefix . $cKey,
73
-                        function ($value) use ($options, $pName) {
72
+                        $prefix.$cKey,
73
+                        function($value) use ($options, $pName) {
74 74
                             $this->syncPTValue($options, $pName, $value);
75 75
                         }
76 76
                     )
Please login to merge, or discard this patch.