Completed
Push — master ( 3f1b9d...eb5773 )
by Miled
03:15 queued 01:56
created
includes/admin/components/contacts/wsl.components.contacts.list.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -11,6 +11,9 @@
 block discarded – undo
11 11
 
12 12
 // --------------------------------------------------------------------
13 13
 
14
+/**
15
+ * @param integer $user_id
16
+ */
14 17
 function wsl_component_contacts_list( $user_id )
15 18
 {
16 19
 	// HOOKABLE:
Please login to merge, or discard this patch.
includes/services/wsl.mail.notification.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,9 @@
 block discarded – undo
25 25
 */
26 26
 if( ! function_exists( 'wsl_admin_notification' ) )
27 27
 {
28
+	/**
29
+	 * @param integer $user_id
30
+	 */
28 31
 	function wsl_admin_notification( $user_id, $provider )
29 32
 	{
30 33
 		//Get the user details
Please login to merge, or discard this patch.
includes/services/wsl.watchdog.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -57,6 +57,9 @@
 block discarded – undo
57 57
 
58 58
 // --------------------------------------------------------------------
59 59
 
60
+/**
61
+ * @param string $action_name
62
+ */
60 63
 function wsl_watchdog_log_action( $action_name, $action_args = array(), $user_id = 0 )
61 64
 {
62 65
 	$provider = wsl_process_login_get_selected_provider();
Please login to merge, or discard this patch.
includes/settings/wsl.compatibilities.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -241,6 +241,10 @@
 block discarded – undo
241 241
 function wsl_bp_user_custom_avatar($html, $args){ wsl_deprecated_function( __FUNCTION__, '2.2.3' ); return wsl_get_bp_user_custom_avatar($html, $args); }
242 242
 
243 243
 // nag about it
244
+/**
245
+ * @param string $function
246
+ * @param string $version
247
+ */
244 248
 function wsl_deprecated_function( $function, $version )
245 249
 {
246 250
 	// user should be admin and logged in
Please login to merge, or discard this patch.
includes/widgets/wsl.error.pages.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -103,6 +103,11 @@
 block discarded – undo
103 103
 */
104 104
 if( ! function_exists( 'wsl_render_error_page' ) )
105 105
 {
106
+	/**
107
+	 * @param string $message
108
+	 * @param string $notes
109
+	 * @param string $api_error
110
+	 */
106 111
 	function wsl_render_error_page( $message, $notes = null, $provider = null, $api_error = null, $php_exception = null )
107 112
 	{
108 113
 		$assets_base_url = WORDPRESS_SOCIAL_LOGIN_PLUGIN_URL . 'assets/img/';
Please login to merge, or discard this patch.
includes/services/wsl.user.data.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -100,6 +100,9 @@  discard block
 block discarded – undo
100 100
 
101 101
 // --------------------------------------------------------------------
102 102
 
103
+/**
104
+ * @param string $field
105
+ */
103 106
 function wsl_get_stored_hybridauth_user_profiles_count_by_field( $field )
104 107
 {
105 108
 	global $wpdb;
@@ -111,6 +114,9 @@  discard block
 block discarded – undo
111 114
 
112 115
 // --------------------------------------------------------------------
113 116
 
117
+/**
118
+ * @param integer $limit
119
+ */
114 120
 function wsl_get_stored_hybridauth_user_profiles_grouped_by_user_id( $offset, $limit )
115 121
 {
116 122
 	global $wpdb;
@@ -133,6 +139,9 @@  discard block
 block discarded – undo
133 139
 
134 140
 // --------------------------------------------------------------------
135 141
 
142
+/**
143
+ * @param integer $limit
144
+ */
136 145
 function wsl_get_stored_hybridauth_user_contacts_by_user_id( $user_id, $offset, $limit )
137 146
 {
138 147
 	global $wpdb;
Please login to merge, or discard this patch.