Completed
Branch php-cs-fixer (f1a40c)
by SignpostMarv
09:10
created
src/Schema/Attribute/AttributeRef.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     }
26 26
     /**
27 27
      *
28
-     * @return AttributeDef
28
+     * @return Attribute
29 29
      */
30 30
     public function getReferencedAttribute()
31 31
     {
@@ -53,6 +53,9 @@  discard block
 block discarded – undo
53 53
         return $this->nil;
54 54
     }
55 55
 
56
+    /**
57
+     * @param boolean $nil
58
+     */
56 59
     public function setNil($nil)
57 60
     {
58 61
         $this->nil = $nil;
Please login to merge, or discard this patch.
src/Schema/Attribute/AttributeSingle.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,6 @@
 block discarded – undo
36 36
 
37 37
     /**
38 38
      *
39
-     * @param boolean $qualified
40 39
      */
41 40
     public function setNil($nil);
42 41
 
Please login to merge, or discard this patch.
src/Schema/Element/ElementSingle.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@  discard block
 block discarded – undo
17 17
 
18 18
     /**
19 19
      *
20
-     * @param int $qualified
21 20
      */
22 21
     public function setMin($min);
23 22
 
@@ -29,7 +28,6 @@  discard block
 block discarded – undo
29 28
 
30 29
     /**
31 30
      *
32
-     * @param int $qualified
33 31
      */
34 32
     public function setMax($max);
35 33
 
@@ -53,7 +51,6 @@  discard block
 block discarded – undo
53 51
 
54 52
     /**
55 53
      *
56
-     * @param boolean $qualified
57 54
      */
58 55
     public function setNil($nil);
59 56
 }
Please login to merge, or discard this patch.
src/Schema/Schema.php 1 patch
Doc Comments   +10 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,6 +42,9 @@  discard block
 block discarded – undo
42 42
         return $this->elementsQualification;
43 43
     }
44 44
 
45
+    /**
46
+     * @param boolean $elementsQualification
47
+     */
45 48
     public function setElementsQualification($elementsQualification)
46 49
     {
47 50
         $this->elementsQualification = $elementsQualification;
@@ -52,6 +55,9 @@  discard block
 block discarded – undo
52 55
         return $this->attributesQualification;
53 56
     }
54 57
 
58
+    /**
59
+     * @param boolean $attributesQualification
60
+     */
55 61
     public function setAttributesQualification($attributesQualification)
56 62
     {
57 63
         $this->attributesQualification = $attributesQualification;
@@ -97,6 +103,9 @@  discard block
 block discarded – undo
97 103
         return $this->doc;
98 104
     }
99 105
 
106
+    /**
107
+     * @param string $doc
108
+     */
100 109
     public function setDoc($doc)
101 110
     {
102 111
         $this->doc = $doc;
@@ -285,7 +294,7 @@  discard block
 block discarded – undo
285 294
      *
286 295
      * @param string $name
287 296
      * @param string $namespace
288
-     * @return AttributeReal
297
+     * @return SchemaItem
289 298
      */
290 299
     public function findAttribute($name, $namespace = null)
291 300
     {
Please login to merge, or discard this patch.
src/SchemaReader.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -55,6 +55,10 @@  discard block
 block discarded – undo
55 55
         $this->addKnownSchemaLocation('http://www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd', __DIR__ . '/Resources/xmldsig-core-schema.xsd');
56 56
     }
57 57
 
58
+    /**
59
+     * @param string $remote
60
+     * @param string $local
61
+     */
58 62
     public function addKnownSchemaLocation($remote, $local)
59 63
     {
60 64
         $this->knownLocationSchemas[$remote] = $local;
@@ -333,6 +337,9 @@  discard block
 block discarded – undo
333 337
         };
334 338
     }
335 339
 
340
+    /**
341
+     * @param \Closure $callback
342
+     */
336 343
     private function loadComplexType(Schema $schema, DOMElement $node, $callback = null)
337 344
     {
338 345
         $isSimple = false;
@@ -390,6 +397,9 @@  discard block
 block discarded – undo
390 397
         };
391 398
     }
392 399
 
400
+    /**
401
+     * @param \Closure $callback
402
+     */
393 403
     private function loadSimpleType(Schema $schema, DOMElement $node, $callback = null)
394 404
     {
395 405
         $type = new SimpleType($schema, $node->getAttribute("name"));
@@ -559,6 +569,9 @@  discard block
 block discarded – undo
559 569
         }
560 570
     }
561 571
 
572
+    /**
573
+     * @param string $typeName
574
+     */
562 575
     private static function splitParts(DOMElement $node, $typeName)
563 576
     {
564 577
         $namespace = null;
Please login to merge, or discard this patch.