Completed
Push — master ( a5882e...93cf61 )
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
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     }
25 25
 
26 26
     /**
27
-     * @return AttributeDef
27
+     * @return Attribute
28 28
      */
29 29
     public function getReferencedAttribute()
30 30
     {
@@ -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
@@ -31,7 +31,6 @@
 block discarded – undo
31 31
     public function isNil();
32 32
 
33 33
     /**
34
-     * @param bool $qualified
35 34
      */
36 35
     public function setNil($nil);
37 36
 
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
@@ -15,7 +15,6 @@  discard block
 block discarded – undo
15 15
     public function getMin();
16 16
 
17 17
     /**
18
-     * @param int $qualified
19 18
      */
20 19
     public function setMin($min);
21 20
 
@@ -25,7 +24,6 @@  discard block
 block discarded – undo
25 24
     public function getMax();
26 25
 
27 26
     /**
28
-     * @param int $qualified
29 27
      */
30 28
     public function setMax($max);
31 29
 
@@ -45,7 +43,6 @@  discard block
 block discarded – undo
45 43
     public function isNil();
46 44
 
47 45
     /**
48
-     * @param bool $qualified
49 46
      */
50 47
     public function setNil($nil);
51 48
 }
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
@@ -41,6 +41,9 @@  discard block
 block discarded – undo
41 41
         return $this->elementsQualification;
42 42
     }
43 43
 
44
+    /**
45
+     * @param boolean $elementsQualification
46
+     */
44 47
     public function setElementsQualification($elementsQualification)
45 48
     {
46 49
         $this->elementsQualification = $elementsQualification;
@@ -51,6 +54,9 @@  discard block
 block discarded – undo
51 54
         return $this->attributesQualification;
52 55
     }
53 56
 
57
+    /**
58
+     * @param boolean $attributesQualification
59
+     */
54 60
     public function setAttributesQualification($attributesQualification)
55 61
     {
56 62
         $this->attributesQualification = $attributesQualification;
@@ -96,6 +102,9 @@  discard block
 block discarded – undo
96 102
         return $this->doc;
97 103
     }
98 104
 
105
+    /**
106
+     * @param string $doc
107
+     */
99 108
     public function setDoc($doc)
100 109
     {
101 110
         $this->doc = $doc;
@@ -290,7 +299,7 @@  discard block
 block discarded – undo
290 299
      * @param string $name
291 300
      * @param string $namespace
292 301
      *
293
-     * @return AttributeReal
302
+     * @return SchemaItem
294 303
      */
295 304
     public function findAttribute($name, $namespace = null)
296 305
     {
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;
@@ -335,6 +339,9 @@  discard block
 block discarded – undo
335 339
         };
336 340
     }
337 341
 
342
+    /**
343
+     * @param \Closure $callback
344
+     */
338 345
     private function loadComplexType(Schema $schema, DOMElement $node, $callback = null)
339 346
     {
340 347
         $isSimple = false;
@@ -391,6 +398,9 @@  discard block
 block discarded – undo
391 398
         };
392 399
     }
393 400
 
401
+    /**
402
+     * @param \Closure $callback
403
+     */
394 404
     private function loadSimpleType(Schema $schema, DOMElement $node, $callback = null)
395 405
     {
396 406
         $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.