Test Failed
Push — master ( 7760f7...7346dc )
by Alexey
05:08
created
system/modules/Daemon/Daemon.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -69,6 +69,9 @@
 block discarded – undo
69 69
         return $path;
70 70
     }
71 71
 
72
+    /**
73
+     * @param string $item
74
+     */
72 75
     function unserialize($item) {
73 76
         return $this->serializer()->unserialize($item);
74 77
     }
Please login to merge, or discard this patch.
system/modules/Geography/objects/SxGeo.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -92,6 +92,11 @@  discard block
 block discarded – undo
92 92
 		$this->info['cities_begin']  = $this->info['regions_begin'] + $info['region_size'];
93 93
 	}
94 94
 
95
+	/**
96
+	 * @param string $ipn
97
+	 * @param double $min
98
+	 * @param double $max
99
+	 */
95 100
 	protected function search_idx($ipn, $min, $max){
96 101
 		if($this->batch_mode){
97 102
 			while($max - $min > 8){
@@ -112,6 +117,10 @@  discard block
 block discarded – undo
112 117
 		return  $min;
113 118
 	}
114 119
 
120
+	/**
121
+	 * @param string $str
122
+	 * @param string $ipn
123
+	 */
115 124
 	protected function search_db($str, $ipn, $min, $max){
116 125
 		if($max - $min > 1) {
117 126
 			$ipn = substr($ipn, 1);
@@ -165,6 +174,9 @@  discard block
 block discarded – undo
165 174
 		}
166 175
 	}
167 176
 
177
+	/**
178
+	 * @param integer $type
179
+	 */
168 180
 	protected function readData($seek, $max, $type){
169 181
 		$raw = '';
170 182
 		if($seek && $max) {
Please login to merge, or discard this patch.