Completed
Push — master ( 364d98...95cea0 )
by Owen
07:48
created
src/DiceCalc/CalcSet.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -82,6 +82,9 @@
 block discarded – undo
82 82
         return new CalcSet($out);
83 83
     }
84 84
 
85
+    /**
86
+     * @param CalcSet $operand
87
+     */
85 88
     public function mcalc($operator, $operand)
86 89
     {
87 90
         $out = [];
Please login to merge, or discard this patch.
src/DiceCalc/Random.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -13,6 +13,9 @@  discard block
 block discarded – undo
13 13
     public static $queue = null;
14 14
     public static $queue_list = [];
15 15
 
16
+    /**
17
+     * @param integer $min
18
+     */
16 19
     public static function get($min, $max) {
17 20
         if(is_callable(self::$queue)) {
18 21
             $test_fn = self::$queue;
@@ -24,6 +27,9 @@  discard block
 block discarded – undo
24 27
         return $result;
25 28
     }
26 29
 
30
+    /**
31
+     * @param \Closure $queue
32
+     */
27 33
     public static function set_queue($queue) {
28 34
         self::$queue = $queue;
29 35
     }
Please login to merge, or discard this patch.