@@ -346,7 +346,6 @@ |
||
| 346 | 346 | /** |
| 347 | 347 | * Retrieves internalSubset even in bugfixed php versions |
| 348 | 348 | * |
| 349 | - * @param \DOMDocumentType $child |
|
| 350 | 349 | * @param string $data |
| 351 | 350 | * @return string |
| 352 | 351 | */ |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | |
| 69 | 69 | if (false !== stripos($data, '<!doctype')) { |
| 70 | 70 | $internalSubset = $this->getDomDocumentTypeEntitySubset($data); |
| 71 | - if (!in_array($internalSubset, $this->doctypeWhitelist, true)) { |
|
| 71 | + if ( ! in_array($internalSubset, $this->doctypeWhitelist, true)) { |
|
| 72 | 72 | throw new InvalidArgumentException(sprintf( |
| 73 | 73 | 'The document type "%s" is not allowed. If it is safe, you may add it to the whitelist configuration.', |
| 74 | 74 | $internalSubset |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | |
| 91 | 91 | private function emptyStringToSpaceCharacter($data) |
| 92 | 92 | { |
| 93 | - return $data === '' ? ' ' : (string)$data; |
|
| 93 | + return $data === '' ? ' ' : (string) $data; |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | public function visitNull($data, array $type, Context $context) |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | |
| 101 | 101 | public function visitString($data, array $type, Context $context) |
| 102 | 102 | { |
| 103 | - $data = (string)$data; |
|
| 103 | + $data = (string) $data; |
|
| 104 | 104 | |
| 105 | 105 | if (null === $this->result) { |
| 106 | 106 | $this->result = $data; |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | |
| 112 | 112 | public function visitBoolean($data, array $type, Context $context) |
| 113 | 113 | { |
| 114 | - $data = (string)$data; |
|
| 114 | + $data = (string) $data; |
|
| 115 | 115 | |
| 116 | 116 | if ('true' === $data || '1' === $data) { |
| 117 | 117 | $data = true; |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | |
| 131 | 131 | public function visitInteger($data, array $type, Context $context) |
| 132 | 132 | { |
| 133 | - $data = (integer)$data; |
|
| 133 | + $data = (integer) $data; |
|
| 134 | 134 | |
| 135 | 135 | if (null === $this->result) { |
| 136 | 136 | $this->result = $data; |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | |
| 142 | 142 | public function visitDouble($data, array $type, Context $context) |
| 143 | 143 | { |
| 144 | - $data = (double)$data; |
|
| 144 | + $data = (double) $data; |
|
| 145 | 145 | |
| 146 | 146 | if (null === $this->result) { |
| 147 | 147 | $this->result = $data; |
@@ -192,7 +192,7 @@ discard block |
||
| 192 | 192 | $nodes = $data->xpath($entryName); |
| 193 | 193 | } |
| 194 | 194 | |
| 195 | - if (!\count($nodes)) { |
|
| 195 | + if ( ! \count($nodes)) { |
|
| 196 | 196 | if (null === $this->result) { |
| 197 | 197 | return $this->result = array(); |
| 198 | 198 | } |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | $nodes = $data->children($namespace)->$entryName; |
| 232 | 232 | foreach ($nodes as $v) { |
| 233 | 233 | $attrs = $v->attributes(); |
| 234 | - if (!isset($attrs[$this->currentMetadata->xmlKeyAttribute])) { |
|
| 234 | + if ( ! isset($attrs[$this->currentMetadata->xmlKeyAttribute])) { |
|
| 235 | 235 | throw new RuntimeException(sprintf('The key attribute "%s" must be set for each entry of the map.', $this->currentMetadata->xmlKeyAttribute)); |
| 236 | 236 | } |
| 237 | 237 | |
@@ -263,7 +263,7 @@ discard block |
||
| 263 | 263 | $name = $this->namingStrategy->translateName($metadata); |
| 264 | 264 | } |
| 265 | 265 | |
| 266 | - if (!$metadata->type) { |
|
| 266 | + if ( ! $metadata->type) { |
|
| 267 | 267 | throw new RuntimeException(sprintf('You must define a type for %s::$%s.', $metadata->reflection->class, $metadata->name)); |
| 268 | 268 | } |
| 269 | 269 | |
@@ -287,7 +287,7 @@ discard block |
||
| 287 | 287 | |
| 288 | 288 | if ($metadata->xmlCollection) { |
| 289 | 289 | $enclosingElem = $data; |
| 290 | - if (!$metadata->xmlCollectionInline) { |
|
| 290 | + if ( ! $metadata->xmlCollectionInline) { |
|
| 291 | 291 | $enclosingElem = $data->children($metadata->xmlNamespace)->$name; |
| 292 | 292 | } |
| 293 | 293 | |
@@ -301,7 +301,7 @@ discard block |
||
| 301 | 301 | |
| 302 | 302 | if ($metadata->xmlNamespace) { |
| 303 | 303 | $node = $data->children($metadata->xmlNamespace)->$name; |
| 304 | - if (!$node->count()) { |
|
| 304 | + if ( ! $node->count()) { |
|
| 305 | 305 | return; |
| 306 | 306 | } |
| 307 | 307 | } else { |
@@ -311,9 +311,9 @@ discard block |
||
| 311 | 311 | if (isset($namespaces[''])) { |
| 312 | 312 | $prefix = uniqid('ns-'); |
| 313 | 313 | $data->registerXPathNamespace($prefix, $namespaces['']); |
| 314 | - $nodes = $data->xpath('./' . $prefix . ':' . $name); |
|
| 314 | + $nodes = $data->xpath('./'.$prefix.':'.$name); |
|
| 315 | 315 | } else { |
| 316 | - $nodes = $data->xpath('./' . $name); |
|
| 316 | + $nodes = $data->xpath('./'.$name); |
|
| 317 | 317 | } |
| 318 | 318 | if (empty($nodes)) { |
| 319 | 319 | return; |
@@ -72,8 +72,7 @@ discard block |
||
| 72 | 72 | \DateTimeInterface $date, |
| 73 | 73 | array $type, |
| 74 | 74 | Context $context |
| 75 | - ) |
|
| 76 | - { |
|
| 75 | + ) { |
|
| 77 | 76 | if ($visitor instanceof XmlSerializationVisitor && false === $this->xmlCData) { |
| 78 | 77 | return $visitor->visitSimpleString($date->format($this->getFormat($type)), $type, $context); |
| 79 | 78 | } |
@@ -96,8 +95,7 @@ discard block |
||
| 96 | 95 | \DateTimeImmutable $date, |
| 97 | 96 | array $type, |
| 98 | 97 | Context $context |
| 99 | - ) |
|
| 100 | - { |
|
| 98 | + ) { |
|
| 101 | 99 | return $this->serializeDateTimeInterface($visitor, $date, $type, $context); |
| 102 | 100 | } |
| 103 | 101 | |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | 'type' => $type, |
| 54 | 54 | 'format' => $format, |
| 55 | 55 | 'direction' => GraphNavigator::DIRECTION_SERIALIZATION, |
| 56 | - 'method' => 'serialize' . $type, |
|
| 56 | + 'method' => 'serialize'.$type, |
|
| 57 | 57 | ); |
| 58 | 58 | } |
| 59 | 59 | } |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | private function isDataXmlNull($data) |
| 117 | 117 | { |
| 118 | 118 | $attributes = $data->attributes('xsi', true); |
| 119 | - return isset($attributes['nil'][0]) && (string)$attributes['nil'][0] === 'true'; |
|
| 119 | + return isset($attributes['nil'][0]) && (string) $attributes['nil'][0] === 'true'; |
|
| 120 | 120 | } |
| 121 | 121 | |
| 122 | 122 | public function deserializeDateTimeFromXml(XmlDeserializationVisitor $visitor, $data, array $type) |
@@ -175,13 +175,13 @@ discard block |
||
| 175 | 175 | |
| 176 | 176 | private function parseDateTime($data, array $type, $immutable = false) |
| 177 | 177 | { |
| 178 | - $timezone = !empty($type['params'][1]) ? new \DateTimeZone($type['params'][1]) : $this->defaultTimezone; |
|
| 178 | + $timezone = ! empty($type['params'][1]) ? new \DateTimeZone($type['params'][1]) : $this->defaultTimezone; |
|
| 179 | 179 | $format = $this->getDeserializationFormat($type); |
| 180 | 180 | |
| 181 | 181 | if ($immutable) { |
| 182 | - $datetime = \DateTimeImmutable::createFromFormat($format, (string)$data, $timezone); |
|
| 182 | + $datetime = \DateTimeImmutable::createFromFormat($format, (string) $data, $timezone); |
|
| 183 | 183 | } else { |
| 184 | - $datetime = \DateTime::createFromFormat($format, (string)$data, $timezone); |
|
| 184 | + $datetime = \DateTime::createFromFormat($format, (string) $data, $timezone); |
|
| 185 | 185 | } |
| 186 | 186 | |
| 187 | 187 | if (false === $datetime) { |
@@ -236,15 +236,15 @@ discard block |
||
| 236 | 236 | $format = 'P'; |
| 237 | 237 | |
| 238 | 238 | if (0 < $dateInterval->y) { |
| 239 | - $format .= $dateInterval->y . 'Y'; |
|
| 239 | + $format .= $dateInterval->y.'Y'; |
|
| 240 | 240 | } |
| 241 | 241 | |
| 242 | 242 | if (0 < $dateInterval->m) { |
| 243 | - $format .= $dateInterval->m . 'M'; |
|
| 243 | + $format .= $dateInterval->m.'M'; |
|
| 244 | 244 | } |
| 245 | 245 | |
| 246 | 246 | if (0 < $dateInterval->d) { |
| 247 | - $format .= $dateInterval->d . 'D'; |
|
| 247 | + $format .= $dateInterval->d.'D'; |
|
| 248 | 248 | } |
| 249 | 249 | |
| 250 | 250 | if (0 < $dateInterval->h || 0 < $dateInterval->i || 0 < $dateInterval->s) { |
@@ -252,15 +252,15 @@ discard block |
||
| 252 | 252 | } |
| 253 | 253 | |
| 254 | 254 | if (0 < $dateInterval->h) { |
| 255 | - $format .= $dateInterval->h . 'H'; |
|
| 255 | + $format .= $dateInterval->h.'H'; |
|
| 256 | 256 | } |
| 257 | 257 | |
| 258 | 258 | if (0 < $dateInterval->i) { |
| 259 | - $format .= $dateInterval->i . 'M'; |
|
| 259 | + $format .= $dateInterval->i.'M'; |
|
| 260 | 260 | } |
| 261 | 261 | |
| 262 | 262 | if (0 < $dateInterval->s) { |
| 263 | - $format .= $dateInterval->s . 'S'; |
|
| 263 | + $format .= $dateInterval->s.'S'; |
|
| 264 | 264 | } |
| 265 | 265 | |
| 266 | 266 | if ($format === 'P') { |
@@ -56,7 +56,7 @@ |
||
| 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 | |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | foreach ($data as $key => $value) { |
| 41 | - if (!property_exists(__CLASS__, $key)) { |
|
| 41 | + if ( ! property_exists(__CLASS__, $key)) { |
|
| 42 | 42 | throw new \BadMethodCallException(sprintf('Unknown property "%s" on annotation "%s".', $key, __CLASS__)); |
| 43 | 43 | } |
| 44 | 44 | $this->{$key} = $value; |
@@ -82,8 +82,7 @@ |
||
| 82 | 82 | ObjectConstructorInterface $objectConstructor, |
| 83 | 83 | EventDispatcherInterface $dispatcher = null, |
| 84 | 84 | ExpressionEvaluatorInterface $expressionEvaluator = null |
| 85 | - ) |
|
| 86 | - { |
|
| 85 | + ) { |
|
| 87 | 86 | $this->dispatcher = $dispatcher; |
| 88 | 87 | $this->metadataFactory = $metadataFactory; |
| 89 | 88 | $this->handlerRegistry = $handlerRegistry; |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | case 'resource': |
| 156 | 156 | $msg = 'Resources are not supported in serialized data.'; |
| 157 | 157 | if ($context instanceof SerializationContext && null !== $path = $context->getPath()) { |
| 158 | - $msg .= ' Path: ' . $path; |
|
| 158 | + $msg .= ' Path: '.$path; |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | throw new RuntimeException($msg); |
@@ -211,11 +211,11 @@ discard block |
||
| 211 | 211 | /** @var $metadata ClassMetadata */ |
| 212 | 212 | $metadata = $this->metadataFactory->getMetadataForClass($type['name']); |
| 213 | 213 | |
| 214 | - if ($metadata->usingExpression && !$this->expressionExclusionStrategy) { |
|
| 214 | + if ($metadata->usingExpression && ! $this->expressionExclusionStrategy) { |
|
| 215 | 215 | throw new ExpressionLanguageRequiredException("To use conditional exclude/expose in {$metadata->name} you must configure the expression language."); |
| 216 | 216 | } |
| 217 | 217 | |
| 218 | - if ($context instanceof DeserializationContext && !empty($metadata->discriminatorMap) && $type['name'] === $metadata->discriminatorBaseClass) { |
|
| 218 | + if ($context instanceof DeserializationContext && ! empty($metadata->discriminatorMap) && $type['name'] === $metadata->discriminatorBaseClass) { |
|
| 219 | 219 | $metadata = $this->resolveMetadata($data, $metadata); |
| 220 | 220 | } |
| 221 | 221 | |
@@ -285,22 +285,22 @@ discard block |
||
| 285 | 285 | { |
| 286 | 286 | switch (true) { |
| 287 | 287 | case \is_array($data) && isset($data[$metadata->discriminatorFieldName]): |
| 288 | - $typeValue = (string)$data[$metadata->discriminatorFieldName]; |
|
| 288 | + $typeValue = (string) $data[$metadata->discriminatorFieldName]; |
|
| 289 | 289 | break; |
| 290 | 290 | |
| 291 | 291 | // Check XML attribute for discriminatorFieldName |
| 292 | 292 | case \is_object($data) && $metadata->xmlDiscriminatorAttribute && isset($data[$metadata->discriminatorFieldName]): |
| 293 | - $typeValue = (string)$data[$metadata->discriminatorFieldName]; |
|
| 293 | + $typeValue = (string) $data[$metadata->discriminatorFieldName]; |
|
| 294 | 294 | break; |
| 295 | 295 | |
| 296 | 296 | // Check XML element with namespace for discriminatorFieldName |
| 297 | - case \is_object($data) && !$metadata->xmlDiscriminatorAttribute && null !== $metadata->xmlDiscriminatorNamespace && isset($data->children($metadata->xmlDiscriminatorNamespace)->{$metadata->discriminatorFieldName}): |
|
| 298 | - $typeValue = (string)$data->children($metadata->xmlDiscriminatorNamespace)->{$metadata->discriminatorFieldName}; |
|
| 297 | + case \is_object($data) && ! $metadata->xmlDiscriminatorAttribute && null !== $metadata->xmlDiscriminatorNamespace && isset($data->children($metadata->xmlDiscriminatorNamespace)->{$metadata->discriminatorFieldName}): |
|
| 298 | + $typeValue = (string) $data->children($metadata->xmlDiscriminatorNamespace)->{$metadata->discriminatorFieldName}; |
|
| 299 | 299 | break; |
| 300 | 300 | |
| 301 | 301 | // Check XML element for discriminatorFieldName |
| 302 | 302 | case \is_object($data) && isset($data->{$metadata->discriminatorFieldName}): |
| 303 | - $typeValue = (string)$data->{$metadata->discriminatorFieldName}; |
|
| 303 | + $typeValue = (string) $data->{$metadata->discriminatorFieldName}; |
|
| 304 | 304 | break; |
| 305 | 305 | |
| 306 | 306 | default: |
@@ -311,7 +311,7 @@ discard block |
||
| 311 | 311 | )); |
| 312 | 312 | } |
| 313 | 313 | |
| 314 | - if (!isset($metadata->discriminatorMap[$typeValue])) { |
|
| 314 | + if ( ! isset($metadata->discriminatorMap[$typeValue])) { |
|
| 315 | 315 | throw new \LogicException(sprintf( |
| 316 | 316 | 'The type value "%s" does not exist in the discriminator map of class "%s". Available types: %s', |
| 317 | 317 | $typeValue, |
@@ -83,8 +83,7 @@ |
||
| 83 | 83 | EventDispatcherInterface $dispatcher = null, |
| 84 | 84 | TypeParser $typeParser = null, |
| 85 | 85 | ExpressionEvaluatorInterface $expressionEvaluator = null |
| 86 | - ) |
|
| 87 | - { |
|
| 86 | + ) { |
|
| 88 | 87 | $this->factory = $factory; |
| 89 | 88 | $this->handlerRegistry = $handlerRegistry; |
| 90 | 89 | $this->objectConstructor = $objectConstructor; |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | return $this->serializationVisitors->get($format) |
| 109 | - ->map(function (VisitorInterface $visitor) use ($context, $data, $format) { |
|
| 109 | + ->map(function(VisitorInterface $visitor) use ($context, $data, $format) { |
|
| 110 | 110 | $type = $context->getInitialType() !== null ? $this->typeParser->parse($context->getInitialType()) : null; |
| 111 | 111 | |
| 112 | 112 | $this->visit($visitor, $context, $visitor->prepare($data), $format, $type); |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | } |
| 124 | 124 | |
| 125 | 125 | return $this->deserializationVisitors->get($format) |
| 126 | - ->map(function (VisitorInterface $visitor) use ($context, $data, $format, $type) { |
|
| 126 | + ->map(function(VisitorInterface $visitor) use ($context, $data, $format, $type) { |
|
| 127 | 127 | $preparedData = $visitor->prepare($data); |
| 128 | 128 | $navigatorResult = $this->visit($visitor, $context, $preparedData, $format, $this->typeParser->parse($type)); |
| 129 | 129 | |
@@ -142,13 +142,13 @@ discard block |
||
| 142 | 142 | } |
| 143 | 143 | |
| 144 | 144 | return $this->serializationVisitors->get('json') |
| 145 | - ->map(function (JsonSerializationVisitor $visitor) use ($context, $data) { |
|
| 145 | + ->map(function(JsonSerializationVisitor $visitor) use ($context, $data) { |
|
| 146 | 146 | $type = $context->getInitialType() !== null ? $this->typeParser->parse($context->getInitialType()) : null; |
| 147 | 147 | |
| 148 | 148 | $this->visit($visitor, $context, $data, 'json', $type); |
| 149 | 149 | $result = $this->convertArrayObjects($visitor->getRoot()); |
| 150 | 150 | |
| 151 | - if (!\is_array($result)) { |
|
| 151 | + if ( ! \is_array($result)) { |
|
| 152 | 152 | throw new RuntimeException(sprintf( |
| 153 | 153 | 'The input data of type "%s" did not convert to an array, but got a result of type "%s".', |
| 154 | 154 | \is_object($data) ? \get_class($data) : \gettype($data), |
@@ -171,7 +171,7 @@ discard block |
||
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | return $this->deserializationVisitors->get('json') |
| 174 | - ->map(function (JsonDeserializationVisitor $visitor) use ($data, $type, $context) { |
|
| 174 | + ->map(function(JsonDeserializationVisitor $visitor) use ($data, $type, $context) { |
|
| 175 | 175 | $navigatorResult = $this->visit($visitor, $context, $data, 'json', $this->typeParser->parse($type)); |
| 176 | 176 | |
| 177 | 177 | return $this->handleDeserializeResult($visitor->getResult(), $navigatorResult); |
@@ -206,7 +206,7 @@ discard block |
||
| 206 | 206 | private function convertArrayObjects($data) |
| 207 | 207 | { |
| 208 | 208 | if ($data instanceof \ArrayObject || $data instanceof \stdClass) { |
| 209 | - $data = (array)$data; |
|
| 209 | + $data = (array) $data; |
|
| 210 | 210 | } |
| 211 | 211 | if (\is_array($data)) { |
| 212 | 212 | foreach ($data as $k => $v) { |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | $classMetadata = $context->getMetadataFactory()->getMetadataForClass('stdClass'); |
| 51 | 51 | $visitor->startVisitingObject($classMetadata, $stdClass, array('name' => 'stdClass'), $context); |
| 52 | 52 | |
| 53 | - foreach ((array)$stdClass as $name => $value) { |
|
| 53 | + foreach ((array) $stdClass as $name => $value) { |
|
| 54 | 54 | $metadata = new StaticPropertyMetadata('stdClass', $name, $value); |
| 55 | 55 | $visitor->visitProperty($metadata, $value, $context); |
| 56 | 56 | } |
@@ -24,7 +24,6 @@ |
||
| 24 | 24 | use JMS\Serializer\Annotation\AccessType; |
| 25 | 25 | use JMS\Serializer\Annotation\Discriminator; |
| 26 | 26 | use JMS\Serializer\Annotation\Exclude; |
| 27 | -use JMS\Serializer\Annotation\ExcludeIf; |
|
| 28 | 27 | use JMS\Serializer\Annotation\ExclusionPolicy; |
| 29 | 28 | use JMS\Serializer\Annotation\Expose; |
| 30 | 29 | use JMS\Serializer\Annotation\Groups; |
@@ -112,9 +112,9 @@ discard block |
||
| 112 | 112 | $classMetadata->setDiscriminator($annot->field, $annot->map, $annot->groups); |
| 113 | 113 | } |
| 114 | 114 | } elseif ($annot instanceof XmlDiscriminator) { |
| 115 | - $classMetadata->xmlDiscriminatorAttribute = (bool)$annot->attribute; |
|
| 116 | - $classMetadata->xmlDiscriminatorCData = (bool)$annot->cdata; |
|
| 117 | - $classMetadata->xmlDiscriminatorNamespace = $annot->namespace ? (string)$annot->namespace : null; |
|
| 115 | + $classMetadata->xmlDiscriminatorAttribute = (bool) $annot->attribute; |
|
| 116 | + $classMetadata->xmlDiscriminatorCData = (bool) $annot->cdata; |
|
| 117 | + $classMetadata->xmlDiscriminatorNamespace = $annot->namespace ? (string) $annot->namespace : null; |
|
| 118 | 118 | } elseif ($annot instanceof VirtualProperty) { |
| 119 | 119 | $virtualPropertyMetadata = new ExpressionPropertyMetadata($name, $annot->name, $annot->exp); |
| 120 | 120 | $propertiesMetadata[] = $virtualPropertyMetadata; |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | } |
| 152 | 152 | } |
| 153 | 153 | |
| 154 | - if (!$excludeAll) { |
|
| 154 | + if ( ! $excludeAll) { |
|
| 155 | 155 | foreach ($class->getProperties() as $property) { |
| 156 | 156 | if ($property->class !== $name || (isset($property->info) && $property->info['class'] !== $name)) { |
| 157 | 157 | continue; |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | } elseif ($annot instanceof Expose) { |
| 185 | 185 | $isExpose = true; |
| 186 | 186 | if (null !== $annot->if) { |
| 187 | - $propertyMetadata->excludeIf = "!(" . $annot->if . ")"; |
|
| 187 | + $propertyMetadata->excludeIf = "!(".$annot->if.")"; |
|
| 188 | 188 | } |
| 189 | 189 | } elseif ($annot instanceof Exclude) { |
| 190 | 190 | if (null !== $annot->if) { |
@@ -229,12 +229,12 @@ discard block |
||
| 229 | 229 | $accessor = array($annot->getter, $annot->setter); |
| 230 | 230 | } elseif ($annot instanceof Groups) { |
| 231 | 231 | $propertyMetadata->groups = $annot->groups; |
| 232 | - foreach ((array)$propertyMetadata->groups as $groupName) { |
|
| 232 | + foreach ((array) $propertyMetadata->groups as $groupName) { |
|
| 233 | 233 | if (false !== strpos($groupName, ',')) { |
| 234 | 234 | throw new InvalidArgumentException(sprintf( |
| 235 | 235 | 'Invalid group name "%s" on "%s", did you mean to create multiple groups?', |
| 236 | 236 | implode(', ', $propertyMetadata->groups), |
| 237 | - $propertyMetadata->class . '->' . $propertyMetadata->name |
|
| 237 | + $propertyMetadata->class.'->'.$propertyMetadata->name |
|
| 238 | 238 | )); |
| 239 | 239 | } |
| 240 | 240 | } |
@@ -248,7 +248,7 @@ discard block |
||
| 248 | 248 | } |
| 249 | 249 | |
| 250 | 250 | |
| 251 | - if ((ExclusionPolicy::NONE === $exclusionPolicy && !$isExclude) |
|
| 251 | + if ((ExclusionPolicy::NONE === $exclusionPolicy && ! $isExclude) |
|
| 252 | 252 | || (ExclusionPolicy::ALL === $exclusionPolicy && $isExpose) |
| 253 | 253 | ) { |
| 254 | 254 | $propertyMetadata->setAccessor( |
@@ -127,6 +127,9 @@ discard block |
||
| 127 | 127 | return $doCData ? $this->document->createCDATASection($data) : $this->document->createTextNode((string)$data); |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | + /** |
|
| 131 | + * @param string $data |
|
| 132 | + */ |
|
| 130 | 133 | public function visitSimpleString($data, array $type, Context $context) |
| 131 | 134 | { |
| 132 | 135 | if (null === $this->document) { |
@@ -474,6 +477,9 @@ discard block |
||
| 474 | 477 | return $this->document->createElementNS($namespace, $prefix . ':' . $tagName); |
| 475 | 478 | } |
| 476 | 479 | |
| 480 | + /** |
|
| 481 | + * @param string $value |
|
| 482 | + */ |
|
| 477 | 483 | private function setAttributeOnNode(\DOMElement $node, $name, $value, $namespace = null) |
| 478 | 484 | { |
| 479 | 485 | if (null !== $namespace) { |
@@ -23,7 +23,6 @@ |
||
| 23 | 23 | use JMS\Serializer\Metadata\ClassMetadata; |
| 24 | 24 | use JMS\Serializer\Metadata\PropertyMetadata; |
| 25 | 25 | use JMS\Serializer\Naming\AdvancedNamingStrategyInterface; |
| 26 | -use JMS\Serializer\Naming\PropertyNamingStrategyInterface; |
|
| 27 | 26 | |
| 28 | 27 | /** |
| 29 | 28 | * XmlSerializationVisitor. |
@@ -125,24 +125,24 @@ discard block |
||
| 125 | 125 | |
| 126 | 126 | if (null === $this->document) { |
| 127 | 127 | $this->document = $this->createDocument(null, null, true); |
| 128 | - $this->currentNode->appendChild($doCData ? $this->document->createCDATASection($data) : $this->document->createTextNode((string)$data)); |
|
| 128 | + $this->currentNode->appendChild($doCData ? $this->document->createCDATASection($data) : $this->document->createTextNode((string) $data)); |
|
| 129 | 129 | |
| 130 | 130 | return; |
| 131 | 131 | } |
| 132 | 132 | |
| 133 | - return $doCData ? $this->document->createCDATASection($data) : $this->document->createTextNode((string)$data); |
|
| 133 | + return $doCData ? $this->document->createCDATASection($data) : $this->document->createTextNode((string) $data); |
|
| 134 | 134 | } |
| 135 | 135 | |
| 136 | 136 | public function visitSimpleString($data, array $type, Context $context) |
| 137 | 137 | { |
| 138 | 138 | if (null === $this->document) { |
| 139 | 139 | $this->document = $this->createDocument(null, null, true); |
| 140 | - $this->currentNode->appendChild($this->document->createTextNode((string)$data)); |
|
| 140 | + $this->currentNode->appendChild($this->document->createTextNode((string) $data)); |
|
| 141 | 141 | |
| 142 | 142 | return; |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | - return $this->document->createTextNode((string)$data); |
|
| 145 | + return $this->document->createTextNode((string) $data); |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | public function visitBoolean($data, array $type, Context $context) |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | $this->setCurrentNode($entryNode); |
| 191 | 191 | |
| 192 | 192 | if (null !== $keyAttributeName) { |
| 193 | - $entryNode->setAttribute($keyAttributeName, (string)$k); |
|
| 193 | + $entryNode->setAttribute($keyAttributeName, (string) $k); |
|
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | if (null !== $node = $this->navigator->accept($v, $this->getElementType($type), $context)) { |
@@ -242,7 +242,7 @@ discard block |
||
| 242 | 242 | $node = $this->navigator->accept($v, $metadata->type, $context); |
| 243 | 243 | $this->revertCurrentMetadata(); |
| 244 | 244 | |
| 245 | - if (!$node instanceof \DOMCharacterData) { |
|
| 245 | + if ( ! $node instanceof \DOMCharacterData) { |
|
| 246 | 246 | throw new RuntimeException(sprintf('Unsupported value for XML attribute for %s. Expected character data, but got %s.', $metadata->name, json_encode($v))); |
| 247 | 247 | } |
| 248 | 248 | if ($this->namingStrategy instanceof AdvancedNamingStrategyInterface) { |
@@ -256,7 +256,7 @@ discard block |
||
| 256 | 256 | } |
| 257 | 257 | |
| 258 | 258 | if (($metadata->xmlValue && $this->currentNode->childNodes->length > 0) |
| 259 | - || (!$metadata->xmlValue && $this->hasValue) |
|
| 259 | + || ( ! $metadata->xmlValue && $this->hasValue) |
|
| 260 | 260 | ) { |
| 261 | 261 | throw new RuntimeException(sprintf('If you make use of @XmlValue, all other properties in the class must have the @XmlAttribute annotation. Invalid usage detected in class %s.', $metadata->class)); |
| 262 | 262 | } |
@@ -268,7 +268,7 @@ discard block |
||
| 268 | 268 | $node = $this->navigator->accept($v, $metadata->type, $context); |
| 269 | 269 | $this->revertCurrentMetadata(); |
| 270 | 270 | |
| 271 | - if (!$node instanceof \DOMCharacterData) { |
|
| 271 | + if ( ! $node instanceof \DOMCharacterData) { |
|
| 272 | 272 | throw new RuntimeException(sprintf('Unsupported value for property %s::$%s. Expected character data, but got %s.', $metadata->reflection->class, $metadata->reflection->name, \is_object($node) ? \get_class($node) : \gettype($node))); |
| 273 | 273 | } |
| 274 | 274 | |
@@ -278,7 +278,7 @@ discard block |
||
| 278 | 278 | } |
| 279 | 279 | |
| 280 | 280 | if ($metadata->xmlAttributeMap) { |
| 281 | - if (!\is_array($v)) { |
|
| 281 | + if ( ! \is_array($v)) { |
|
| 282 | 282 | throw new RuntimeException(sprintf('Unsupported value type for XML attribute map. Expected array but got %s.', \gettype($v))); |
| 283 | 283 | } |
| 284 | 284 | |
@@ -287,7 +287,7 @@ discard block |
||
| 287 | 287 | $node = $this->navigator->accept($value, null, $context); |
| 288 | 288 | $this->revertCurrentMetadata(); |
| 289 | 289 | |
| 290 | - if (!$node instanceof \DOMCharacterData) { |
|
| 290 | + if ( ! $node instanceof \DOMCharacterData) { |
|
| 291 | 291 | throw new RuntimeException(sprintf('Unsupported value for a XML attribute map value. Expected character data, but got %s.', json_encode($v))); |
| 292 | 292 | } |
| 293 | 293 | |
@@ -297,7 +297,7 @@ discard block |
||
| 297 | 297 | return; |
| 298 | 298 | } |
| 299 | 299 | |
| 300 | - if ($addEnclosingElement = !$this->isInLineCollection($metadata) && !$metadata->inline) { |
|
| 300 | + if ($addEnclosingElement = ! $this->isInLineCollection($metadata) && ! $metadata->inline) { |
|
| 301 | 301 | if ($this->namingStrategy instanceof AdvancedNamingStrategyInterface) { |
| 302 | 302 | $elementName = $this->namingStrategy->getPropertyName($metadata, $context); |
| 303 | 303 | } else { |
@@ -344,7 +344,7 @@ discard block |
||
| 344 | 344 | |
| 345 | 345 | private function isSkippableEmptyObject($node, PropertyMetadata $metadata) |
| 346 | 346 | { |
| 347 | - return $node === null && !$metadata->xmlCollection && $metadata->skipWhenEmpty; |
|
| 347 | + return $node === null && ! $metadata->xmlCollection && $metadata->skipWhenEmpty; |
|
| 348 | 348 | } |
| 349 | 349 | |
| 350 | 350 | private function isSkippableCollection(PropertyMetadata $metadata) |
@@ -354,7 +354,7 @@ discard block |
||
| 354 | 354 | |
| 355 | 355 | private function isElementEmpty(\DOMElement $element) |
| 356 | 356 | { |
| 357 | - return !$element->hasChildNodes() && !$element->hasAttributes(); |
|
| 357 | + return ! $element->hasChildNodes() && ! $element->hasAttributes(); |
|
| 358 | 358 | } |
| 359 | 359 | |
| 360 | 360 | public function endVisitingObject(ClassMetadata $metadata, $data, array $type, Context $context) |
@@ -433,12 +433,12 @@ discard block |
||
| 433 | 433 | { |
| 434 | 434 | if (null === $this->document) { |
| 435 | 435 | $this->document = $this->createDocument(null, null, true); |
| 436 | - $this->currentNode->appendChild($textNode = $this->document->createTextNode((string)$data)); |
|
| 436 | + $this->currentNode->appendChild($textNode = $this->document->createTextNode((string) $data)); |
|
| 437 | 437 | |
| 438 | 438 | return $textNode; |
| 439 | 439 | } |
| 440 | 440 | |
| 441 | - return $this->document->createTextNode((string)$data); |
|
| 441 | + return $this->document->createTextNode((string) $data); |
|
| 442 | 442 | } |
| 443 | 443 | |
| 444 | 444 | /** |
@@ -455,7 +455,7 @@ discard block |
||
| 455 | 455 | |
| 456 | 456 | private function attachNullNamespace() |
| 457 | 457 | { |
| 458 | - if (!$this->nullWasVisited) { |
|
| 458 | + if ( ! $this->nullWasVisited) { |
|
| 459 | 459 | $this->document->documentElement->setAttributeNS( |
| 460 | 460 | 'http://www.w3.org/2000/xmlns/', |
| 461 | 461 | 'xmlns:xsi', |
@@ -476,7 +476,7 @@ discard block |
||
| 476 | 476 | foreach ($metadata->xmlNamespaces as $prefix => $uri) { |
| 477 | 477 | $attribute = 'xmlns'; |
| 478 | 478 | if ($prefix !== '') { |
| 479 | - $attribute .= ':' . $prefix; |
|
| 479 | + $attribute .= ':'.$prefix; |
|
| 480 | 480 | } elseif ($element->namespaceURI === $uri) { |
| 481 | 481 | continue; |
| 482 | 482 | } |
@@ -492,19 +492,19 @@ discard block |
||
| 492 | 492 | if ($this->currentNode->isDefaultNamespace($namespace)) { |
| 493 | 493 | return $this->document->createElementNS($namespace, $tagName); |
| 494 | 494 | } |
| 495 | - if (!($prefix = $this->currentNode->lookupPrefix($namespace)) && !($prefix = $this->document->lookupPrefix($namespace))) { |
|
| 496 | - $prefix = 'ns-' . substr(sha1($namespace), 0, 8); |
|
| 495 | + if ( ! ($prefix = $this->currentNode->lookupPrefix($namespace)) && ! ($prefix = $this->document->lookupPrefix($namespace))) { |
|
| 496 | + $prefix = 'ns-'.substr(sha1($namespace), 0, 8); |
|
| 497 | 497 | } |
| 498 | - return $this->document->createElementNS($namespace, $prefix . ':' . $tagName); |
|
| 498 | + return $this->document->createElementNS($namespace, $prefix.':'.$tagName); |
|
| 499 | 499 | } |
| 500 | 500 | |
| 501 | 501 | private function setAttributeOnNode(\DOMElement $node, $name, $value, $namespace = null) |
| 502 | 502 | { |
| 503 | 503 | if (null !== $namespace) { |
| 504 | - if (!$prefix = $node->lookupPrefix($namespace)) { |
|
| 505 | - $prefix = 'ns-' . substr(sha1($namespace), 0, 8); |
|
| 504 | + if ( ! $prefix = $node->lookupPrefix($namespace)) { |
|
| 505 | + $prefix = 'ns-'.substr(sha1($namespace), 0, 8); |
|
| 506 | 506 | } |
| 507 | - $node->setAttributeNS($namespace, $prefix . ':' . $name, $value); |
|
| 507 | + $node->setAttributeNS($namespace, $prefix.':'.$name, $value); |
|
| 508 | 508 | } else { |
| 509 | 509 | $node->setAttribute($name, $value); |
| 510 | 510 | } |
@@ -528,6 +528,6 @@ discard block |
||
| 528 | 528 | */ |
| 529 | 529 | public function setFormatOutput($formatOutput) |
| 530 | 530 | { |
| 531 | - $this->formatOutput = (boolean)$formatOutput; |
|
| 531 | + $this->formatOutput = (boolean) $formatOutput; |
|
| 532 | 532 | } |
| 533 | 533 | } |