Completed
Pull Request — master (#727)
by Gerben
06:35
created
src/JMS/Serializer/EventDispatcher/EventDispatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
             $this->classListeners[$eventName][$loweredClass][$format] = $this->initializeListeners($eventName, $loweredClass, $format);
81 81
         }
82 82
 
83
-        return !!$this->classListeners[$eventName][$loweredClass][$format];
83
+        return ! ! $this->classListeners[$eventName][$loweredClass][$format];
84 84
     }
85 85
 
86 86
     public function dispatch($eventName, $class, $format, Event $event)
Please login to merge, or discard this patch.
src/JMS/Serializer/Util/Writer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -83,16 +83,16 @@
 block discarded – undo
83 83
         $addition = '';
84 84
 
85 85
         $lines = explode("\n", $content);
86
-        for ($i=0,$c=count($lines); $i<$c; $i++) {
86
+        for ($i = 0, $c = count($lines); $i < $c; $i++) {
87 87
             if ($this->indentationLevel > 0
88
-                && !empty($lines[$i])
88
+                && ! empty($lines[$i])
89 89
                 && ((empty($addition) && "\n" === substr($this->content, -1)) || "\n" === substr($addition, -1))) {
90 90
                 $addition .= str_repeat(' ', $this->indentationLevel * $this->indentationSpaces);
91 91
             }
92 92
 
93 93
             $addition .= $lines[$i];
94 94
 
95
-            if ($i+1 < $c) {
95
+            if ($i + 1 < $c) {
96 96
                 $addition .= "\n";
97 97
             }
98 98
         }
Please login to merge, or discard this patch.
src/JMS/Serializer/Context.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -256,7 +256,7 @@
 block discarded – undo
256 256
      */
257 257
     public function getCurrentPath()
258 258
     {
259
-        if (!$this->metadataStack) {
259
+        if ( ! $this->metadataStack) {
260 260
             return array();
261 261
         }
262 262
 
Please login to merge, or discard this patch.
src/JMS/Serializer/Metadata/PropertyMetadata.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -169,13 +169,13 @@
 block discarded – undo
169 169
             $parentStr
170 170
         ) = $unserialized;
171 171
 
172
-        if (isset($unserialized['xmlEntryNamespace'])){
172
+        if (isset($unserialized['xmlEntryNamespace'])) {
173 173
             $this->xmlEntryNamespace = $unserialized['xmlEntryNamespace'];
174 174
         }
175
-        if (isset($unserialized['xmlCollectionSkipWhenEmpty'])){
175
+        if (isset($unserialized['xmlCollectionSkipWhenEmpty'])) {
176 176
             $this->xmlCollectionSkipWhenEmpty = $unserialized['xmlCollectionSkipWhenEmpty'];
177 177
         }
178
-        if (isset($unserialized['excludeIf'])){
178
+        if (isset($unserialized['excludeIf'])) {
179 179
             $this->excludeIf = $unserialized['excludeIf'];
180 180
         }
181 181
 
Please login to merge, or discard this patch.
src/JMS/Serializer/Metadata/VirtualPropertyMetadata.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
             $this->name
101 101
         ) = $unserialized;
102 102
 
103
-        if (isset($unserialized['excludeIf'])){
103
+        if (isset($unserialized['excludeIf'])) {
104 104
             $this->excludeIf = $unserialized['excludeIf'];
105 105
         }
106 106
     }
Please login to merge, or discard this patch.
src/JMS/Serializer/Metadata/Driver/XmlDriver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -140,11 +140,11 @@
 block discarded – undo
140 140
                     }
141 141
 
142 142
                     if (null !== $excludeIf = $pElem->attributes()->{'exclude-if'}) {
143
-                        $pMetadata->excludeIf =$excludeIf;
143
+                        $pMetadata->excludeIf = $excludeIf;
144 144
                     }
145 145
 
146 146
                     if (null !== $excludeIf = $pElem->attributes()->{'expose-if'}) {
147
-                        $pMetadata->excludeIf = "!(" . $excludeIf .")";
147
+                        $pMetadata->excludeIf = "!(".$excludeIf.")";
148 148
                         $isExpose = true;
149 149
                     }
150 150
 
Please login to merge, or discard this patch.
src/JMS/Serializer/Metadata/Driver/YamlDriver.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
                     }
102 102
 
103 103
                     if (isset($pConfig['expose_if'])) {
104
-                        $pMetadata->excludeIf = "!(" . $pConfig['expose_if'].")";
104
+                        $pMetadata->excludeIf = "!(".$pConfig['expose_if'].")";
105 105
                     }
106 106
 
107 107
                     if (isset($pConfig['serialized_name'])) {
@@ -121,15 +121,15 @@  discard block
 block discarded – undo
121 121
 
122 122
                         $colConfig = $pConfig['xml_list'];
123 123
                         if (isset($colConfig['inline'])) {
124
-                            $pMetadata->xmlCollectionInline = (Boolean)$colConfig['inline'];
124
+                            $pMetadata->xmlCollectionInline = (Boolean) $colConfig['inline'];
125 125
                         }
126 126
 
127 127
                         if (isset($colConfig['entry_name'])) {
128
-                            $pMetadata->xmlEntryName = (string)$colConfig['entry_name'];
128
+                            $pMetadata->xmlEntryName = (string) $colConfig['entry_name'];
129 129
                         }
130 130
 
131 131
                         if (isset($colConfig['skip_when_empty'])) {
132
-                            $pMetadata->xmlCollectionSkipWhenEmpty = (Boolean)$colConfig['skip_when_empty'];
132
+                            $pMetadata->xmlCollectionSkipWhenEmpty = (Boolean) $colConfig['skip_when_empty'];
133 133
                         } else {
134 134
                             $pMetadata->xmlCollectionSkipWhenEmpty = true;
135 135
                         }
Please login to merge, or discard this patch.
src/JMS/Serializer/Metadata/Driver/AnnotationDriver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@
 block discarded – undo
159 159
                     } elseif ($annot instanceof Expose) {
160 160
                         $isExpose = true;
161 161
                         if (null !== $annot->if) {
162
-                            $propertyMetadata->excludeIf = "!(" . $annot->if . ")";
162
+                            $propertyMetadata->excludeIf = "!(".$annot->if.")";
163 163
                         }
164 164
                     } elseif ($annot instanceof Exclude) {
165 165
                         if (null !== $annot->if) {
Please login to merge, or discard this patch.
EventDispatcher/Subscriber/SymfonyValidatorValidatorSubscriber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
             ? null
57 57
             : $context->attributes->get('validation_groups')->get();
58 58
 
59
-        if (!$groups) {
59
+        if ( ! $groups) {
60 60
             return;
61 61
         }
62 62
 
Please login to merge, or discard this patch.