Completed
Push — master ( b49250...73a1f2 )
by Yannick
23:05 queued 14:44
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) | 
@@ -475,6 +479,9 @@  discard block
 block discarded – undo
475 479
 	socket_close($this->socket);
476 480
     }
477 481
     
482
+    /**
483
+     * @param string $data
484
+     */
478 485
     public function send($data) {
479 486
 	if ($this->connected === false) $this->connect();
480 487
 	$send = socket_send( $this->socket  , $data , strlen($data),0);
Please login to merge, or discard this patch.