Completed
Pull Request — master (#453)
by Daniel
13:53
created
src/JMS/Serializer/Serializer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -162,6 +162,9 @@
 block discarded – undo
162 162
         ;
163 163
     }
164 164
 
165
+    /**
166
+     * @param string $format
167
+     */
165 168
     private function visit(VisitorInterface $visitor, Context $context, $data, $format, array $type = null)
166 169
     {
167 170
         $context->initialize(
Please login to merge, or discard this patch.
src/JMS/Serializer/Metadata/Driver/YamlDriver.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
167 167
 
168 168
                     //we need read_only before setter and getter set, because that method depends on flag being set
169 169
                     if (isset($pConfig['read_only'])) {
170
-                          $pMetadata->readOnly = (Boolean) $pConfig['read_only'];
170
+                            $pMetadata->readOnly = (Boolean) $pConfig['read_only'];
171 171
                     } else {
172 172
                         $pMetadata->readOnly = $pMetadata->readOnly || $readOnlyClass;
173 173
                     }
Please login to merge, or discard this patch.
src/JMS/Serializer/TypeParser.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
                 |(.)
50 50
             /x',
51 51
             array(self::T_NAME => 'T_NAME', self::T_STRING => 'T_STRING', self::T_OPEN_BRACKET => 'T_OPEN_BRACKET',
52
-                  self::T_CLOSE_BRACKET => 'T_CLOSE_BRACKET', self::T_COMMA => 'T_COMMA', self::T_NONE => 'T_NONE'),
52
+                    self::T_CLOSE_BRACKET => 'T_CLOSE_BRACKET', self::T_COMMA => 'T_COMMA', self::T_NONE => 'T_NONE'),
53 53
             function($value) {
54 54
                 switch ($value[0]) {
55 55
                     case '"':
Please login to merge, or discard this patch.
src/JMS/Serializer/YamlSerializationVisitor.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -168,8 +168,8 @@
 block discarded – undo
168 168
 
169 169
         if ( ! $metadata->inline) {
170 170
             $this->writer
171
-                 ->writeln(Inline::dump($name).':')
172
-                 ->indent();
171
+                    ->writeln(Inline::dump($name).':')
172
+                    ->indent();
173 173
         }
174 174
 
175 175
         $this->setCurrentMetadata($metadata);
Please login to merge, or discard this patch.
src/JMS/Serializer/GenericSerializationVisitor.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@  discard block
 block discarded – undo
32 32
     private $dataStack;
33 33
     private $data;
34 34
 
35
+    /**
36
+     * @param Naming\PropertyNamingStrategyInterface $namingStrategy
37
+     */
35 38
     public function __construct($namingStrategy)
36 39
     {
37 40
         parent::__construct($namingStrategy);
@@ -194,7 +197,6 @@  discard block
 block discarded – undo
194 197
     /**
195 198
      * Allows you to remove data from the current object based on name.
196 199
      *
197
-     * @param string $key
198 200
      * @throws Exception\InvalidArgumentException
199 201
      */
200 202
     public function removeDataPropertyName($propertyName)
Please login to merge, or discard this patch.
src/JMS/Serializer/XmlDeserializationVisitor.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -226,7 +226,7 @@
 block discarded – undo
226 226
             throw new RuntimeException(sprintf('You must define a type for %s::$%s.', $metadata->reflection->class, $metadata->name));
227 227
         }
228 228
 
229
-       if ($metadata->xmlAttribute) {
229
+        if ($metadata->xmlAttribute) {
230 230
 
231 231
             $attributes = $data->attributes($metadata->xmlNamespace);
232 232
             if (isset($attributes[$name])) {
Please login to merge, or discard this patch.
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -346,7 +346,6 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
src/JMS/Serializer/XmlSerializationVisitor.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -48,12 +48,18 @@  discard block
 block discarded – undo
48 48
     private $nullWasVisited;
49 49
     private $objectMetadataStack;
50 50
 
51
+    /**
52
+     * @param Naming\PropertyNamingStrategyInterface $namingStrategy
53
+     */
51 54
     public function __construct($namingStrategy)
52 55
     {
53 56
         parent::__construct($namingStrategy);
54 57
         $this->objectMetadataStack = new \SplStack;
55 58
     }
56 59
 
60
+    /**
61
+     * @param Naming\PropertyNamingStrategyInterface $namingStrategy
62
+     */
57 63
     public function __construct($namingStrategy)
58 64
     {
59 65
         parent::__construct($namingStrategy);
@@ -151,6 +157,9 @@  discard block
 block discarded – undo
151 157
         return $doCData ? $this->document->createCDATASection($data) : $this->document->createTextNode((string) $data);
152 158
     }
153 159
 
160
+    /**
161
+     * @param string $data
162
+     */
154 163
     public function visitSimpleString($data, array $type, Context $context)
155 164
     {
156 165
         if (null === $this->document) {
@@ -468,6 +477,9 @@  discard block
 block discarded – undo
468 477
         }
469 478
     }
470 479
 
480
+    /**
481
+     * @return \DOMNode
482
+     */
471 483
     private function createElement($tagName, $namespace = null)
472 484
     {
473 485
         if (null === $namespace) {
@@ -483,6 +495,9 @@  discard block
 block discarded – undo
483 495
         return $this->document->createElement($prefix . ':' . $tagName);
484 496
     }
485 497
 
498
+    /**
499
+     * @param string $value
500
+     */
486 501
     private function setAttributeOnNode(\DOMElement $node, $name, $value, $namespace = null)
487 502
     {
488 503
         if (null !== $namespace) {
Please login to merge, or discard this patch.