Completed
Branch master (0fc797)
by Michael
13:18 queued 09:16
created
admin/getMysql.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 }
25 25
 
26 26
 /**
27
- * @return AdminerCustomization
27
+ * @return AdminerKfr
28 28
  */
29 29
 function adminer_object()
30 30
 {
Please login to merge, or discard this patch.
include/plugins/plugin.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -10,6 +10,9 @@  discard block
 block discarded – undo
10 10
 	/** @access protected */
11 11
 	var $plugins;
12 12
 	
13
+	/**
14
+	 * @return string
15
+	 */
13 16
 	function _findRootClass($class) { // is_subclass_of(string, string) is available since PHP 5.0.3
14 17
 		do {
15 18
 			$return = $class;
@@ -19,6 +22,7 @@  discard block
 block discarded – undo
19 22
 	
20 23
 	/** Register plugins
21 24
 	* @param array object instances or null to register all classes starting by 'Adminer'
25
+	* @param AdminerFrames[] $plugins
22 26
 	*/
23 27
 	function __construct($plugins) {
24 28
 		if ($plugins === null) {
@@ -37,6 +41,9 @@  discard block
 block discarded – undo
37 41
 		return call_user_func_array(array('parent', $function), $args);
38 42
 	}
39 43
 	
44
+	/**
45
+	 * @param string $function
46
+	 */
40 47
 	function _applyPlugin($function, $args) {
41 48
 		foreach ($this->plugins as $plugin) {
42 49
 			if (method_exists($plugin, $function)) {
@@ -58,6 +65,9 @@  discard block
 block discarded – undo
58 65
 		return $this->_callParent($function, $args);
59 66
 	}
60 67
 	
68
+	/**
69
+	 * @param string $function
70
+	 */
61 71
 	function _appendPlugin($function, $args) {
62 72
 		$return = $this->_callParent($function, $args);
63 73
 		foreach ($this->plugins as $plugin) {
Please login to merge, or discard this patch.