Completed
Pull Request — master (#54)
by Jakub
08:52
created
controller/admin_input.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
 	 * Upload image and return updated ad code or <img> of new banner when using ajax.
122 122
 	 *
123 123
 	 * @param	 string	 $ad_code	 Current ad code
124
-	 * @return	 mixed	 \phpbb\json_response when request is ajax or updated ad code otherwise.
124
+	 * @return	 string	 \phpbb\json_response when request is ajax or updated ad code otherwise.
125 125
 	 */
126 126
 	public function process_banner_upload($ad_code)
127 127
 	{
Please login to merge, or discard this patch.
controller/admin_controller.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -45,17 +45,17 @@
 block discarded – undo
45 45
 	protected $u_action;
46 46
 
47 47
 	/**
48
-	* Constructor
49
-	*
50
-	* @param \phpbb\template\template		    $template		  Template object
51
-	* @param \phpbb\user                        $user             User object
52
-	* @param \phpbb\request\request             $request          Request object
53
-	* @param \phpbb\ads\ad\manager              $manager          Advertisement manager object
54
-	* @param \phpbb\config\db_text              $config_text      Config text object
55
-	* @param \phpbb\config\config               $config           Config object
56
-	* @param \phpbb\ads\controller\admin_input 	$input			  Admin input object
57
-	* @param \phpbb\ads\controller\admin_helper $helper			  Admin helper object
58
-	*/
48
+	 * Constructor
49
+	 *
50
+	 * @param \phpbb\template\template		    $template		  Template object
51
+	 * @param \phpbb\user                        $user             User object
52
+	 * @param \phpbb\request\request             $request          Request object
53
+	 * @param \phpbb\ads\ad\manager              $manager          Advertisement manager object
54
+	 * @param \phpbb\config\db_text              $config_text      Config text object
55
+	 * @param \phpbb\config\config               $config           Config object
56
+	 * @param \phpbb\ads\controller\admin_input 	$input			  Admin input object
57
+	 * @param \phpbb\ads\controller\admin_helper $helper			  Admin helper object
58
+	 */
59 59
 	public function __construct(\phpbb\template\template $template, \phpbb\user $user, \phpbb\request\request $request, \phpbb\ads\ad\manager $manager, \phpbb\config\db_text $config_text, \phpbb\config\config $config, \phpbb\ads\controller\admin_input $input, \phpbb\ads\controller\admin_helper $helper)
60 60
 	{
61 61
 		$this->template = $template;
Please login to merge, or discard this patch.