Completed
Push — master ( 151d25...a80ee5 )
by Jamie
03:44
created
classes/controllers/FrmFormsController.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -145,6 +145,9 @@  discard block
 block discarded – undo
145 145
 		wp_die();
146 146
 	}
147 147
 
148
+	/**
149
+	 * @param string $field
150
+	 */
148 151
 	private static function edit_in_place_value( $field ) {
149 152
 		check_ajax_referer( 'frm_ajax', 'nonce' );
150 153
 		FrmAppHelper::permission_check('frm_edit_forms', 'hide');
@@ -677,6 +680,7 @@  discard block
 block discarded – undo
677 680
 	/**
678 681
 	 * Get an array of the helper shortcodes to display in the customization panel
679 682
 	 * @since 2.0.6
683
+	 * @param boolean $settings_tab
680 684
 	 */
681 685
 	private static function get_shortcode_helpers( $settings_tab ) {
682 686
 		$entry_shortcodes = array(
@@ -749,6 +753,9 @@  discard block
 block discarded – undo
749 753
         return $content;
750 754
     }
751 755
 
756
+	/**
757
+	 * @param boolean $entry
758
+	 */
752 759
 	private static function get_entry_by_param( &$entry ) {
753 760
 		if ( ! $entry || ! is_object( $entry ) ) {
754 761
 			if ( ! $entry || ! is_numeric( $entry ) ) {
@@ -1207,6 +1214,7 @@  discard block
 block discarded – undo
1207 1214
 
1208 1215
 	/**
1209 1216
 	 * @since 2.0.8
1217
+	 * @param string $content
1210 1218
 	 */
1211 1219
 	private static function maybe_minimize_form( $atts, &$content ) {
1212 1220
 		// check if minimizing is turned on
Please login to merge, or discard this patch.