GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( c0fc47...4f8ffd )
by Chris
17s
created
includes/general-functions.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 
8 8
 /**
9 9
  * Checks to see if a session is set and it's appropriate to start one, and starts it if necessary
10
- * @return void
10
+ * @return boolean
11 11
  */
12 12
 function ppp_maybe_start_session() {
13 13
 	$ret = false;
@@ -73,6 +73,7 @@  discard block
 block discarded – undo
73 73
 
74 74
 /**
75 75
  * Strips slashes and html_entities_decode for sending to the networks.
76
+ * @param string $string
76 77
  */
77 78
 function ppp_entities_and_slashes( $string ) {
78 79
 	return stripslashes( html_entity_decode( $string, ENT_COMPAT, 'UTF-8' ) );
Please login to merge, or discard this patch.
includes/twitter-functions.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 /**
23 23
  * Register Twitter as a servcie
24 24
  * @param  array $services The registered services
25
- * @return array           With Twitter added
25
+ * @return string[]           With Twitter added
26 26
  */
27 27
 function ppp_tw_register_service( $services = array() ) {
28 28
 	$services[] = 'tw';
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
 /**
241 241
  * Register the Twitter connection area for the Social Media Accounts section
242 242
  * @param  array $content The existing content tokens
243
- * @return array          The content tokens with Twitter added
243
+ * @return string[]          The content tokens with Twitter added
244 244
  */
245 245
 function ppp_tw_register_admin_social_content( $content ) {
246 246
 	$content[] = 'tw';
Please login to merge, or discard this patch.
includes/facebook-functions.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 /**
23 23
  * Register Facebook as a service
24 24
  * @param  array $services The Currently registered services
25
- * @return array           The services with Facebook added
25
+ * @return string[]           The services with Facebook added
26 26
  */
27 27
 function ppp_fb_register_service( $services = array() ) {
28 28
 	$services[] = 'fb';
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
 /**
191 191
  * Add query vars for Facebook
192 192
  * @param  array $vars Currenty Query Vars
193
- * @return array       Query vars array with facebook added
193
+ * @return string[]       Query vars array with facebook added
194 194
  */
195 195
 function ppp_fb_query_vars( $vars ) {
196 196
 	$vars[] = 'fb_access_token';
@@ -748,7 +748,7 @@  discard block
 block discarded – undo
748 748
  * @since  2.3
749 749
  * @param  int     $post_id      Post ID
750 750
  * @param  string  $name         The cron name
751
- * @param  boolean $scheduled    If the item is being fired by a schedule (default, true), or retrieved for display (false)
751
+ * @param  boolean $is_scheduled    If the item is being fired by a schedule (default, true), or retrieved for display (false)
752 752
  * @return string                The formatted link to the post
753 753
  */
754 754
 function ppp_fb_generate_share_content( $post_id, $name, $is_scheduled = true ) {
Please login to merge, or discard this patch.
includes/libs/class-wp-logging.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
 	 * @since       1.0
202 202
 	 *
203 203
 	 *
204
-	 * @return     array
204
+	 * @return     boolean
205 205
 	*/
206 206
 
207 207
 	private static function valid_type( $type ) {
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
 	 * @uses 		wp_update_post()
300 300
 	 * @uses 		update_post_meta()
301 301
 	 *
302
-	 * @return      bool True if successful, false otherwise
302
+	 * @return      boolean|null True if successful, false otherwise
303 303
 	*/
304 304
 	public static function update_log( $log_data = array(), $log_meta = array() ) {
305 305
 
Please login to merge, or discard this patch.
includes/linkedin-functions.php 1 patch
Doc Comments   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 /**
23 23
  * Registers LinkedIn as a service
24 24
  * @param  array $services The registered servcies
25
- * @return array           With LinkedIn added
25
+ * @return string[]           With LinkedIn added
26 26
  */
27 27
 function ppp_li_register_service( $services = array() ) {
28 28
 	$services[] = 'li';
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
 /**
157 157
  * Add query vars for Linkedin
158 158
  * @param  array $vars Currenty Query Vars
159
- * @return array       Query vars array with linkedin added
159
+ * @return string[]       Query vars array with linkedin added
160 160
  */
161 161
 function ppp_li_query_vars( $vars ) {
162 162
 	$vars[] = 'li_access_token';
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
 /**
287 287
  * Add the content box for LinkedIn in the social media settings
288 288
  * @param  array $content The existing content blocks
289
- * @return array          With LinkedIn
289
+ * @return string[]          With LinkedIn
290 290
  */
291 291
 function ppp_li_register_admin_social_content( $content ) {
292 292
 	$content[] = 'li';
@@ -497,7 +497,6 @@  discard block
 block discarded – undo
497 497
  * @since  2.3
498 498
  * @param  int $key        The key in the array
499 499
  * @param  array  $args    Arguements for the current post's share data
500
- * @param  int    $post_id The post ID being edited
501 500
  * @return void
502 501
  */
503 502
 function ppp_render_li_share_row( $key, $args = array() ) {
@@ -740,7 +739,7 @@  discard block
 block discarded – undo
740 739
  * @since  2.3
741 740
  * @param  int     $post_id      Post ID
742 741
  * @param  string  $name         The cron name
743
- * @param  boolean $scheduled    If the item is being fired by a schedule (default, true), or retrieved for display (false)
742
+ * @param  boolean $is_scheduled    If the item is being fired by a schedule (default, true), or retrieved for display (false)
744 743
  * @return string                The formatted link to the post
745 744
  */
746 745
 function ppp_li_generate_share_content( $post_id, $name, $is_scheduled = true ) {
Please login to merge, or discard this patch.
post-promoter-pro.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
 
321 321
 	/**
322 322
 	 * Deactivates the license key
323
-	 * @return void
323
+	 * @return null|false
324 324
 	 */
325 325
 	public function deactivate_license() {
326 326
 		// listen for our activate button to be clicked
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
 
365 365
 	/**
366 366
 	 * Activates the license key provided
367
-	 * @return void
367
+	 * @return null|false
368 368
 	 */
369 369
 	public function activate_license() {
370 370
 		// listen for our activate button to be clicked
@@ -434,7 +434,7 @@  discard block
 block discarded – undo
434 434
 	 *
435 435
 	 * @since  2.3
436 436
 	 * @param  array $log_types Array of log types
437
-	 * @return array
437
+	 * @return string[]
438 438
 	 */
439 439
 	public function register_log_type( $log_types ) {
440 440
 		$types[] = 'ppp_share';
Please login to merge, or discard this patch.
includes/cron-functions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -225,7 +225,7 @@
 block discarded – undo
225 225
  * @since  2.3
226 226
  * @param  string $date The Date
227 227
  * @param  string $time The time
228
- * @return long         A timestamp
228
+ * @return integer         A timestamp
229 229
  */
230 230
 function ppp_generate_timestamp( $date = false, $time = false ) {
231 231
 	// Just in case we need this, let's set it once
Please login to merge, or discard this patch.
includes/EDD_SL_Plugin_Updater.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
 	 * @uses api_request()
78 78
 	 *
79 79
 	 * @param array   $_transient_data Update array build by WordPress.
80
-	 * @return array Modified update array with custom plugin data.
80
+	 * @return stdClass Modified update array with custom plugin data.
81 81
 	 */
82 82
 	public function check_update( $_transient_data ) {
83 83
 
Please login to merge, or discard this patch.