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 ( 4cb780...45b07d )
by Simon
04:34 queued 02:15
created
web/app/themes/stash/content.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package stash
4
- */
3
+         * @package stash
4
+         */
5 5
 ?>
6 6
 
7 7
 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
@@ -17,19 +17,19 @@  discard block
 block discarded – undo
17 17
 
18 18
 	<div class="entry-content">
19 19
 		<?php
20
-			/* translators: %s: Name of current post */
21
-			the_content( sprintf(
22
-				__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'stash' ),
23
-				the_title( '<span class="screen-reader-text">"', '"</span>', false )
24
-			) );
25
-		?>
20
+            /* translators: %s: Name of current post */
21
+            the_content( sprintf(
22
+                __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'stash' ),
23
+                the_title( '<span class="screen-reader-text">"', '"</span>', false )
24
+            ) );
25
+        ?>
26 26
 
27 27
 		<?php
28
-			wp_link_pages( array(
29
-				'before' => '<div class="page-links">' . __( 'Pages:', 'stash' ),
30
-				'after'  => '</div>',
31
-			) );
32
-		?>
28
+            wp_link_pages( array(
29
+                'before' => '<div class="page-links">' . __( 'Pages:', 'stash' ),
30
+                'after'  => '</div>',
31
+            ) );
32
+        ?>
33 33
 	</div><!-- .entry-content -->
34 34
 
35 35
 	<footer class="entry-footer">
Please login to merge, or discard this patch.
web/app/themes/stash/footer.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
  */
6 6
 $timberContext = $GLOBALS['timberContext'];
7 7
 if ( ! isset( $timberContext ) ) {
8
-	throw new \Exception( 'Timber context not set in footer.' );
8
+    throw new \Exception( 'Timber context not set in footer.' );
9 9
 }
10 10
 $timberContext['content'] = ob_get_contents();
11 11
 ob_end_clean();
Please login to merge, or discard this patch.
web/app/themes/stash/single.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 $context['comment_form'] = TimberHelper::get_comment_form();
17 17
 
18 18
 if ( post_password_required( $post->ID ) ) {
19
-	Timber::render( 'single-password.twig', $context );
19
+    Timber::render( 'single-password.twig', $context );
20 20
 } else {
21
-	Timber::render( array( 'single-' . $post->ID . '.twig', 'single-' . $post->post_type . '.twig', 'single.twig' ), $context );
21
+    Timber::render( array( 'single-' . $post->ID . '.twig', 'single-' . $post->post_type . '.twig', 'single.twig' ), $context );
22 22
 }
Please login to merge, or discard this patch.