Completed
Push — master ( 0dec54...086e6a )
by Asmir
11s
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
@@ -54,6 +54,10 @@  discard block
 block discarded – undo
54 54
         $this->addKnownSchemaLocation('http://www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd', __DIR__ . '/Resources/xmldsig-core-schema.xsd');
55 55
     }
56 56
 
57
+    /**
58
+     * @param string $remote
59
+     * @param string $local
60
+     */
57 61
     public function addKnownSchemaLocation($remote, $local)
58 62
     {
59 63
         $this->knownLocationSchemas[$remote] = $local;
@@ -332,6 +336,9 @@  discard block
 block discarded – undo
332 336
         };
333 337
     }
334 338
 
339
+    /**
340
+     * @param \Closure $callback
341
+     */
335 342
     private function loadComplexType(Schema $schema, DOMElement $node, $callback = null)
336 343
     {
337 344
         $isSimple = false;
@@ -384,6 +391,9 @@  discard block
 block discarded – undo
384 391
         };
385 392
     }
386 393
 
394
+    /**
395
+     * @param \Closure $callback
396
+     */
387 397
     private function loadSimpleType(Schema $schema, DOMElement $node, $callback = null)
388 398
     {
389 399
         $type = new SimpleType($schema, $node->getAttribute("name"));
@@ -553,6 +563,9 @@  discard block
 block discarded – undo
553 563
         }
554 564
     }
555 565
 
566
+    /**
567
+     * @param string $typeName
568
+     */
556 569
     private static function splitParts(DOMElement $node, $typeName)
557 570
     {
558 571
         $namespace = null;
Please login to merge, or discard this patch.