Completed
Push — master ( 3d8cb5...5a808c )
by Yannick
07:32
created
require/class.SpotterImport.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -46,6 +46,10 @@
 block discarded – undo
46 46
 
47 47
     }
48 48
 
49
+    /**
50
+     * @param string $id
51
+     * @param string $ident
52
+     */
49 53
     public function get_Schedule($id,$ident) {
50 54
 	global $globalDebug, $globalFork, $globalSchedulesFetch;
51 55
 	// Get schedule here, so it's done only one time
Please login to merge, or discard this patch.
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) | 
@@ -462,6 +466,9 @@  discard block
 block discarded – undo
462 466
 	}
463 467
     }
464 468
     
469
+    /**
470
+     * @param string $data
471
+     */
465 472
     function send($data) {
466 473
 	if ($this->connected === false) $this->connect();
467 474
 	$send = socket_send( $this->socket  , $data , strlen($data),0);
Please login to merge, or discard this patch.