Completed
Push — master ( 87df34...03f09c )
by Andreas
19:39 queued 12:51
created
api/midgard/collector.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -25,6 +25,10 @@  discard block
 block discarded – undo
25 25
 
26 26
     private $value_properties = array();
27 27
 
28
+    /**
29
+     * @param string $class
30
+     * @param string $field
31
+     */
28 32
     public function __construct($class, $field = null, $value = null)
29 33
     {
30 34
         parent::__construct($class);
@@ -68,6 +72,9 @@  discard block
 block discarded – undo
68 72
         return true;
69 73
     }
70 74
 
75
+    /**
76
+     * @param string $property
77
+     */
71 78
     protected function build_property_select($property)
72 79
     {
73 80
         $parsed = $this->parse_constraint_name($property);
Please login to merge, or discard this patch.
src/api/object.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -509,6 +509,7 @@  discard block
 block discarded – undo
509 509
     }
510 510
 
511 511
     /**
512
+     * @param integer $up
512 513
      * @return QueryBuilder
513 514
      */
514 515
     protected function get_uniquefield_query($classname, $field, $part, $upfield, $up)
@@ -610,7 +611,7 @@  discard block
 block discarded – undo
610 611
     /**
611 612
      * @param string $domain
612 613
      * @param string $name
613
-     * @param mixed $value
614
+     * @param string $value
614 615
      * @return boolean
615 616
      */
616 617
     public function set_parameter($domain, $name, $value)
@@ -816,6 +817,9 @@  discard block
 block discarded – undo
816 817
         return new \midgard_reflection_property(get_called_class());
817 818
     }
818 819
 
820
+    /**
821
+     * @param string $guid
822
+     */
819 823
     public function set_guid($guid)
820 824
     {
821 825
         parent::__set('guid', $guid);
Please login to merge, or discard this patch.