Completed
Push — master ( 294034...cc589d )
by Yannick
08:28
created
require/class.APRS.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -89,6 +89,10 @@  discard block
 block discarded – undo
89 89
 	'y' => 'Yagi At QTH');
90 90
 	
91 91
 
92
+    /**
93
+     * @param integer $n
94
+     * @param integer $s
95
+     */
92 96
     private function urshift($n, $s) {
93 97
 	return ($n >= 0) ? ($n >> $s) :
94 98
 	    (($n & 0x7fffffff) >> $s) | 
@@ -483,6 +487,9 @@  discard block
 block discarded – undo
483 487
 	socket_close($this->socket);
484 488
     }
485 489
     
490
+    /**
491
+     * @param string $data
492
+     */
486 493
     public function send($data) {
487 494
 	global $globalDebug;
488 495
 	if ($this->connected === false) $this->connect();
Please login to merge, or discard this patch.