Completed
Branch master (bcadff)
by Michael
05:30
created
include/plugins/plugin.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -27,6 +27,9 @@  discard block
 block discarded – undo
27 27
 		}
28 28
 	}
29 29
 	
30
+	/**
31
+	 * @param string $function
32
+	 */
30 33
 	function _applyPlugin($function, $args) {
31 34
 		foreach ($this->plugins as $plugin) {
32 35
 			if (method_exists($plugin, $function)) {
@@ -46,6 +49,9 @@  discard block
 block discarded – undo
46 49
 		return $this->_callParent($function, $args);
47 50
 	}
48 51
 	
52
+	/**
53
+	 * @param string $function
54
+	 */
49 55
 	function _appendPlugin($function, $args) {
50 56
 		$return = $this->_callParent($function, $args);
51 57
 		foreach ($this->plugins as $plugin) {
Please login to merge, or discard this patch.