Completed
Pull Request — master (#539)
by Delf
03:23
created
src/JMS/Serializer/Exclusion/ExclusionGroupsExclusionStrategy.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,8 @@
 block discarded – undo
47 47
      * @param $metadataGroups
48 48
      * @return bool
49 49
      */
50
-    private function shouldSkipGroup($metadataGroups) {
50
+    private function shouldSkipGroup($metadataGroups)
51
+    {
51 52
         if (false === $metadataGroups) {
52 53
             return false;
53 54
         }
Please login to merge, or discard this patch.
src/JMS/Serializer/Metadata/PropertyMetadata.php 1 patch
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -168,13 +168,13 @@
 block discarded – undo
168 168
             $parentStr
169 169
         ) = $unserialized;
170 170
 
171
-        if (isset($unserialized['xmlEntryNamespace'])){
171
+        if (isset($unserialized['xmlEntryNamespace'])) {
172 172
             $this->xmlEntryNamespace = $unserialized['xmlEntryNamespace'];
173 173
         }
174
-        if (isset($unserialized['xmlCollectionSkipWhenEmpty'])){
174
+        if (isset($unserialized['xmlCollectionSkipWhenEmpty'])) {
175 175
             $this->xmlCollectionSkipWhenEmpty = $unserialized['xmlCollectionSkipWhenEmpty'];
176 176
         }
177
-        if (isset($unserialized['exclusionGroups'])){
177
+        if (isset($unserialized['exclusionGroups'])) {
178 178
             $this->exclusionGroups = $unserialized['exclusionGroups'];
179 179
         }
180 180
 
Please login to merge, or discard this patch.