Completed
Pull Request — develop (#1503)
by
unknown
18:36
created
includes/extensions/edit-entry/class-edit-entry.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,6 +64,9 @@  discard block
 block discarded – undo
64 64
     }
65 65
 
66 66
 
67
+    /**
68
+     * @param string $component
69
+     */
67 70
     private function load_components( $component ) {
68 71
 
69 72
         $dir = trailingslashit( self::$file );
@@ -183,7 +186,7 @@  discard block
 block discarded – undo
183 186
      * "You can edit this post from the post page" fields, for example.
184 187
      *
185 188
      * @param $entry array Gravity Forms entry object
186
-     * @param $view_id int GravityView view id
189
+     * @param integer $view_id int GravityView view id
187 190
      * @param $post_id int GravityView Post ID where View may be embedded {@since 1.9.2}
188 191
      * @param string|array $field_values Parameters to pass in to the Edit Entry form to prefill data. Uses the same format as Gravity Forms "Allow field to be populated dynamically" {@since 1.9.2} {@see https://www.gravityhelp.com/documentation/article/allow-field-to-be-populated-dynamically/ }
189 192
      * @return string
@@ -286,7 +289,7 @@  discard block
 block discarded – undo
286 289
      * Needs to be used combined with GravityView_Edit_Entry::user_can_edit_entry for maximum security!!
287 290
      *
288 291
      * @param  array $entry Gravity Forms entry array
289
-     * @param \GV\View|int $view ID of the view you want to check visibility against {@since 1.9.2}. Required since 2.0
292
+     * @param integer $view ID of the view you want to check visibility against {@since 1.9.2}. Required since 2.0
290 293
      * @return bool
291 294
      */
292 295
     public static function check_user_cap_edit_entry( $entry, $view = 0 ) {
Please login to merge, or discard this patch.
includes/class-data.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -143,6 +143,7 @@
 block discarded – undo
143 143
 	/**
144 144
 	 * @deprecated
145 145
 	 * @see \GV\View_Collection::get()
146
+	 * @param integer|null $view_id
146 147
 	 */
147 148
 	function get_view( $view_id, $atts = NULL ) {
148 149
 		if ( ! $view = $this->views->get( $view_id ) ) {
Please login to merge, or discard this patch.
includes/class-gravityview-entry-list.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,13 +87,13 @@
 block discarded – undo
87 87
 	 * @since 2.0 Added $template_context parameter
88 88
 	 * @since 2.7.2 Added $view_id parameter
89 89
 	 *
90
-	 * @param array|GV\Entry[] $entries
90
+	 * @param GV\Entry[] $entries
91 91
 	 * @param int $post_id
92 92
 	 * @param array $form
93 93
 	 * @param string $link_format
94 94
 	 * @param string $after_link
95 95
 	 * @param \GV\Template_Context $template_context The context
96
-	 * @param int|null $view_id View to link to when displaying on a page with multiple Views
96
+	 * @param integer $view_id View to link to when displaying on a page with multiple Views
97 97
 	 */
98 98
 	function __construct( $entries = array(), $post_id = 0, $form = array(), $link_format = '', $after_link = '', $context = '', $template_context = null, $view_id = 0 ) {
99 99
 		$this->entries = $entries;
Please login to merge, or discard this patch.
includes/wordpress-widgets/class-gravityview-recent-entries-widget.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@
 block discarded – undo
176 176
 	 * @param  array $instance Settings for the current widget
177 177
 	 * @param  string $form_id Form ID int, as string
178 178
 	 *
179
-	 * @return array|GV\Entry[] $entries Multidimensional array of Gravity Forms entries or GravityView Entry objects
179
+	 * @return GV\Entry[] $entries Multidimensional array of Gravity Forms entries or GravityView Entry objects
180 180
 	 */
181 181
 	private function get_entries( $instance, $form_id ) {
182 182
 
Please login to merge, or discard this patch.
includes/admin/class-gravityview-support-port.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,6 @@
 block discarded – undo
47 47
 	 * @param string $atts
48 48
 	 * @param string $css_class
49 49
 	 * @param string $anchor_text
50
-	 * @param string $link_text
51 50
 	 *
52 51
 	 * @return string If no article information exists, original tooltip. Otherwise, modified!
53 52
 	 */
Please login to merge, or discard this patch.
future/includes/class-gv-utils.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 	 * @param string $name The key name (will be prefixed).
53 53
 	 * @param mixed $default The default value if not found (Default: null)
54 54
 	 *
55
-	 * @return mixed The value or $default if not found.
55
+	 * @return string The value or $default if not found.
56 56
 	 */
57 57
 	public static function _SERVER( $name, $default = null ) {
58 58
 		return self::get( $_SERVER, $name, $default );
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
 	 *
127 127
 	 * @param mixed $value The value to return from the closure.
128 128
 	 *
129
-	 * @return Closure The closure with the $value bound.
129
+	 * @return \Closure The closure with the $value bound.
130 130
 	 */
131 131
 	public static function _return( $value ) {
132 132
 		return function() use ( $value ) { return $value; };
Please login to merge, or discard this patch.
includes/extensions/duplicate-entry/class-duplicate-entry.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 	 *
91 91
 	 * @param array $fields Array of field types not editable by users
92 92
 	 *
93
-	 * @return array
93
+	 * @return string[]
94 94
 	 */
95 95
 	public function _filter_sortable_fields( $fields ) {
96 96
 
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 	 *
109 109
 	 * @param array $file_paths List of template paths ordered
110 110
 	 *
111
-	 * @return array File paths, with duplicate field path added at index 117
111
+	 * @return string[] File paths, with duplicate field path added at index 117
112 112
 	 */
113 113
 	public function add_template_path( $file_paths ) {
114 114
 
@@ -213,7 +213,6 @@  discard block
 block discarded – undo
213 213
 	 * @since 2.5
214 214
 	 *
215 215
 	 * @param  array 	    $visibility_caps        Array of capabilities to display in field dropdown.
216
-	 * @param  string       $field_type  Type of field options to render (`field` or `widget`)
217 216
 	 * @param  string       $template_id Table slug
218 217
 	 * @param  float|string $field_id    GF Field ID - Example: `3`, `5.2`, `entry_link`, `created_by`
219 218
 	 * @param  string       $context     What context are we in? Example: `single` or `directory`
Please login to merge, or discard this patch.
includes/widgets/class-gravityview-widget-gravityforms.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
 	 *
74 74
 	 * @param array $allowlist Array of widgets to show before a search is performed, if the setting is enabled.
75 75
 	 *
76
-	 * @return array
76
+	 * @return string[]
77 77
 	 */
78 78
 	function add_to_allowlist( $allowlist ) {
79 79
 
Please login to merge, or discard this patch.
future/lib/EDD_SL_Plugin_Updater.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
 	 * @uses api_request()
98 98
 	 *
99 99
 	 * @param array   $_transient_data Update array build by WordPress.
100
-	 * @return array Modified update array with custom plugin data.
100
+	 * @return stdClass Modified update array with custom plugin data.
101 101
 	 */
102 102
 	public function check_update( $_transient_data ) {
103 103
 
Please login to merge, or discard this patch.