Completed
Push — master ( f840d7...ba2f05 )
by Nicolaas
02:11
created
code/tests/apc.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -577,6 +577,10 @@
 block discarded – undo
577 577
 }
578 578
 
579 579
 // create menu entry
580
+/**
581
+ * @param integer $ob
582
+ * @param string $title
583
+ */
580 584
 function menu_entry($ob, $title)
581 585
 {
582 586
     global $MYREQUEST,$MY_SELF;
Please login to merge, or discard this patch.
code/tests/memcache.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -51,6 +51,9 @@  discard block
 block discarded – undo
51 51
 }
52 52
 ///////////MEMCACHE FUNCTIONS /////////////////////////////////////////////////////////////////////
53 53
 
54
+/**
55
+ * @param string $command
56
+ */
54 57
 function sendMemcacheCommands($command)
55 58
 {
56 59
     global $MEMCACHE_SERVERS;
@@ -93,6 +96,9 @@  discard block
 block discarded – undo
93 96
     fclose($s);
94 97
     return parseMemcacheResults($buf);
95 98
 }
99
+/**
100
+ * @param string $str
101
+ */
96 102
 function parseMemcacheResults($str)
97 103
 {
98 104
     $res = array();
@@ -310,6 +316,10 @@  discard block
 block discarded – undo
310 316
 }
311 317
 
312 318
 // create menu entry
319
+/**
320
+ * @param integer $ob
321
+ * @param string $title
322
+ */
313 323
 function menu_entry($ob, $title)
314 324
 {
315 325
     global $PHP_SELF;
Please login to merge, or discard this patch.
code/tests/opcache.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -250,6 +250,9 @@
 block discarded – undo
250 250
         return $this->_d3Scripts;
251 251
     }
252 252
 
253
+    /**
254
+     * @param string $name
255
+     */
253 256
     private function _processPartition($value, $name = null)
254 257
     {
255 258
         if (array_key_exists('size', $value)) {
Please login to merge, or discard this patch.