Completed
Push — 0.2 ( a472ab...0a2fba )
by Asmir
16s
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   +9 added lines patch added patch discarded remove patch
@@ -353,6 +353,9 @@  discard block
 block discarded – undo
353 353
         };
354 354
     }
355 355
 
356
+    /**
357
+     * @param \Closure $callback
358
+     */
356 359
     private function loadComplexType(Schema $schema, DOMElement $node, $callback = null)
357 360
     {
358 361
         $isSimple = false;
@@ -410,6 +413,9 @@  discard block
 block discarded – undo
410 413
         };
411 414
     }
412 415
 
416
+    /**
417
+     * @param \Closure $callback
418
+     */
413 419
     private function loadSimpleType(Schema $schema, DOMElement $node, $callback = null)
414 420
     {
415 421
         $type = new SimpleType($schema, $node->getAttribute("name"));
@@ -579,6 +585,9 @@  discard block
 block discarded – undo
579 585
         }
580 586
     }
581 587
 
588
+    /**
589
+     * @param string $typeName
590
+     */
582 591
     private static function splitParts(DOMElement $node, $typeName)
583 592
     {
584 593
         $namespace = null;
Please login to merge, or discard this patch.