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 ( 18cd25...377ed0 )
by Vincent
02:59
created
web/app/themes/stash/content-none.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,9 +23,12 @@
 block discarded – undo
23 23
 			<p><?php _e('Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'stash'); ?></p>
24 24
 			<?php get_search_form(); ?>
25 25
 
26
-		<?php else : ?>
26
+		<?php else {
27
+    : ?>
27 28
 
28
-			<p><?php _e('It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'stash'); ?></p>
29
+			<p><?php _e('It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'stash');
30
+}
31
+?></p>
29 32
 			<?php get_search_form(); ?>
30 33
 
31 34
 		<?php endif; ?>
Please login to merge, or discard this patch.
web/app/themes/stash/author.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 
13 13
 $data = Timber::get_context();
14 14
 $data['posts'] = Timber::get_posts();
15
-if ( isset( $wp_query->query_vars['author'] ) ) {
16
-    $author = new TimberUser( $wp_query->query_vars['author'] );
15
+if (isset($wp_query->query_vars['author'])) {
16
+    $author = new TimberUser($wp_query->query_vars['author']);
17 17
     $data['author'] = $author;
18
-    $data['title'] = 'Author Archives: ' . $author->name();
18
+    $data['title'] = 'Author Archives: '.$author->name();
19 19
 }
20
-Timber::render( array( 'author.twig', 'archive.twig' ), $data );
20
+Timber::render(array('author.twig', 'archive.twig'), $data);
Please login to merge, or discard this patch.
web/app/themes/stash/content-single.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,10 +16,10 @@
 block discarded – undo
16 16
 	<div class="entry-content">
17 17
 		<?php the_content(); ?>
18 18
 		<?php
19
-            wp_link_pages( array(
20
-                'before' => '<div class="page-links">' . __( 'Pages:', 'stash' ),
19
+            wp_link_pages(array(
20
+                'before' => '<div class="page-links">'.__('Pages:', 'stash'),
21 21
                 'after'  => '</div>',
22
-            ) );
22
+            ));
23 23
         ?>
24 24
 	</div><!-- .entry-content -->
25 25
 
Please login to merge, or discard this patch.
web/app/themes/stash/content.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -18,17 +18,17 @@
 block discarded – undo
18 18
 	<div class="entry-content">
19 19
 		<?php
20 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
-            ) );
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 25
         ?>
26 26
 
27 27
 		<?php
28
-            wp_link_pages( array(
29
-                'before' => '<div class="page-links">' . __( 'Pages:', 'stash' ),
28
+            wp_link_pages(array(
29
+                'before' => '<div class="page-links">'.__('Pages:', 'stash'),
30 30
                 'after'  => '</div>',
31
-            ) );
31
+            ));
32 32
         ?>
33 33
 	</div><!-- .entry-content -->
34 34
 
Please login to merge, or discard this patch.
web/app/themes/stash/functions.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -145,21 +145,21 @@
 block discarded – undo
145 145
         }
146 146
 
147 147
             if ($vendorJsExists) {
148
-            wp_enqueue_script('stashVendorJs', get_template_directory_uri() . '/dist/js/vendor.js', [], filemtime(get_stylesheet_directory() . '/dist/js/vendor.js'), true);
148
+            wp_enqueue_script('stashVendorJs', get_template_directory_uri().'/dist/js/vendor.js', [], filemtime(get_stylesheet_directory().'/dist/js/vendor.js'), true);
149 149
             array_push($mainJsDependencies, 'stashVendorJs');
150 150
         }
151 151
 
152 152
         if ($mainJsExists) {
153
-            wp_enqueue_script('stashMainJs', get_template_directory_uri() . '/dist/js/main.js', $mainJsDependencies, filemtime(get_stylesheet_directory() . '/dist/js/main.js'), true);
153
+            wp_enqueue_script('stashMainJs', get_template_directory_uri().'/dist/js/main.js', $mainJsDependencies, filemtime(get_stylesheet_directory().'/dist/js/main.js'), true);
154 154
         }
155 155
 
156 156
         if ($vendorCssExists) {
157
-            wp_enqueue_style('stashVendorCss', get_template_directory_uri() . '/dist/css/vendor.css', [], filemtime(get_stylesheet_directory() . '/dist/css/vendor.css'));
157
+            wp_enqueue_style('stashVendorCss', get_template_directory_uri().'/dist/css/vendor.css', [], filemtime(get_stylesheet_directory().'/dist/css/vendor.css'));
158 158
             array_push($mainCssDependencies, 'stashVendorCss');
159 159
         }
160 160
 
161 161
         if ($mainCssExists) {
162
-            wp_enqueue_style('stashMainCss', get_template_directory_uri() . '/dist/css/main.css', $mainCssDependencies, filemtime(get_stylesheet_directory() . '/dist/css/main.css'));
162
+            wp_enqueue_style('stashMainCss', get_template_directory_uri().'/dist/css/main.css', $mainCssDependencies, filemtime(get_stylesheet_directory().'/dist/css/main.css'));
163 163
         }
164 164
     }
165 165
 
Please login to merge, or discard this patch.
web/app/themes/stash/content-page.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -14,11 +14,11 @@
 block discarded – undo
14 14
 	<div class="entry-content">
15 15
 		<?php the_content(); ?>
16 16
 		<?php
17
-			wp_link_pages(array(
18
-				'before' => '<div class="page-links">'.__('Pages:', 'stash'),
19
-				'after'  => '</div>',
20
-			));
21
-		?>
17
+            wp_link_pages(array(
18
+                'before' => '<div class="page-links">'.__('Pages:', 'stash'),
19
+                'after'  => '</div>',
20
+            ));
21
+        ?>
22 22
 	</div><!-- .entry-content -->
23 23
 
24 24
 	<footer class="entry-footer">
Please login to merge, or discard this patch.
web/app/themes/stash/archive.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -14,27 +14,27 @@
 block discarded – undo
14 14
  * @since   Timber 0.2
15 15
  */
16 16
 
17
-$templates = array( 'archive.twig', 'index.twig' );
17
+$templates = array('archive.twig', 'index.twig');
18 18
 
19 19
 $data = Timber::get_context();
20 20
 
21 21
 $data['title'] = 'Archive';
22
-if ( is_day() ) {
23
-    $data['title'] = 'Archive: '.get_the_date( 'D M Y' );
24
-} else if ( is_month() ) {
25
-    $data['title'] = 'Archive: '.get_the_date( 'M Y' );
26
-} else if ( is_year() ) {
27
-    $data['title'] = 'Archive: '.get_the_date( 'Y' );
28
-} else if ( is_tag() ) {
29
-    $data['title'] = single_tag_title( '', false );
30
-} else if ( is_category() ) {
31
-    $data['title'] = single_cat_title( '', false );
32
-    array_unshift( $templates, 'archive-' . get_query_var( 'cat' ) . '.twig' );
33
-} else if ( is_post_type_archive() ) {
34
-    $data['title'] = post_type_archive_title( '', false );
35
-    array_unshift( $templates, 'archive-' . get_post_type() . '.twig' );
22
+if (is_day()) {
23
+    $data['title'] = 'Archive: '.get_the_date('D M Y');
24
+} else if (is_month()) {
25
+    $data['title'] = 'Archive: '.get_the_date('M Y');
26
+} else if (is_year()) {
27
+    $data['title'] = 'Archive: '.get_the_date('Y');
28
+} else if (is_tag()) {
29
+    $data['title'] = single_tag_title('', false);
30
+} else if (is_category()) {
31
+    $data['title'] = single_cat_title('', false);
32
+    array_unshift($templates, 'archive-'.get_query_var('cat').'.twig');
33
+} else if (is_post_type_archive()) {
34
+    $data['title'] = post_type_archive_title('', false);
35
+    array_unshift($templates, 'archive-'.get_post_type().'.twig');
36 36
 }
37 37
 
38 38
 $data['posts'] = Timber::get_posts();
39 39
 
40
-Timber::render( $templates, $data );
40
+Timber::render($templates, $data);
Please login to merge, or discard this patch.
web/app/themes/stash/footer.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,10 +4,10 @@
 block discarded – undo
4 4
  * We use this to end our output buffer (started in header.php) and render into the view/page-plugin.twig template.
5 5
  */
6 6
 $timberContext = $GLOBALS['timberContext'];
7
-if ( ! isset( $timberContext ) ) {
8
-    throw new \Exception( 'Timber context not set in footer.' );
7
+if (!isset($timberContext)) {
8
+    throw new \Exception('Timber context not set in footer.');
9 9
 }
10 10
 $timberContext['content'] = ob_get_contents();
11 11
 ob_end_clean();
12
-$templates = array( 'page-plugin.twig' );
13
-Timber::render( $templates, $timberContext );
12
+$templates = array('page-plugin.twig');
13
+Timber::render($templates, $timberContext);
Please login to merge, or discard this patch.
web/app/themes/stash/comments.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
  * the visitor has not yet entered the password we will
14 14
  * return early without loading the comments.
15 15
  */
16
-if ( post_password_required() ) {
16
+if (post_password_required()) {
17 17
     return;
18 18
 }
19 19
 ?>
@@ -22,21 +22,21 @@  discard block
 block discarded – undo
22 22
 
23 23
 	<?php // You can start editing here -- including this comment! ?>
24 24
 
25
-	<?php if ( have_comments() ) : ?>
25
+	<?php if (have_comments()) : ?>
26 26
 		<h2 class="comments-title">
27 27
 			<?php
28
-                printf( _nx( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'comments title', 'stash' ),
29
-                    number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' );
28
+                printf(_nx('One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'comments title', 'stash'),
29
+                    number_format_i18n(get_comments_number()), '<span>'.get_the_title().'</span>');
30 30
             ?>
31 31
 		</h2>
32 32
 
33
-		<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
33
+		<?php if (get_comment_pages_count() > 1 && get_option('page_comments')) : // are there comments to navigate through ?>
34 34
 		<nav id="comment-nav-above" class="navigation comment-navigation" role="navigation">
35
-			<h2 class="screen-reader-text"><?php _e( 'Comment navigation', 'stash' ); ?></h2>
35
+			<h2 class="screen-reader-text"><?php _e('Comment navigation', 'stash'); ?></h2>
36 36
 			<div class="nav-links">
37 37
 
38
-				<div class="nav-previous"><?php previous_comments_link( __( 'Older Comments', 'stash' ) ); ?></div>
39
-				<div class="nav-next"><?php next_comments_link( __( 'Newer Comments', 'stash' ) ); ?></div>
38
+				<div class="nav-previous"><?php previous_comments_link(__('Older Comments', 'stash')); ?></div>
39
+				<div class="nav-next"><?php next_comments_link(__('Newer Comments', 'stash')); ?></div>
40 40
 
41 41
 			</div><!-- .nav-links -->
42 42
 		</nav><!-- #comment-nav-above -->
@@ -44,20 +44,20 @@  discard block
 block discarded – undo
44 44
 
45 45
 		<ol class="comment-list">
46 46
 			<?php
47
-                wp_list_comments( array(
47
+                wp_list_comments(array(
48 48
                     'style'      => 'ol',
49 49
                     'short_ping' => true,
50
-                ) );
50
+                ));
51 51
             ?>
52 52
 		</ol><!-- .comment-list -->
53 53
 
54
-		<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
54
+		<?php if (get_comment_pages_count() > 1 && get_option('page_comments')) : // are there comments to navigate through ?>
55 55
 		<nav id="comment-nav-below" class="navigation comment-navigation" role="navigation">
56
-			<h2 class="screen-reader-text"><?php _e( 'Comment navigation', 'stash' ); ?></h2>
56
+			<h2 class="screen-reader-text"><?php _e('Comment navigation', 'stash'); ?></h2>
57 57
 			<div class="nav-links">
58 58
 
59
-				<div class="nav-previous"><?php previous_comments_link( __( 'Older Comments', 'stash' ) ); ?></div>
60
-				<div class="nav-next"><?php next_comments_link( __( 'Newer Comments', 'stash' ) ); ?></div>
59
+				<div class="nav-previous"><?php previous_comments_link(__('Older Comments', 'stash')); ?></div>
60
+				<div class="nav-next"><?php next_comments_link(__('Newer Comments', 'stash')); ?></div>
61 61
 
62 62
 			</div><!-- .nav-links -->
63 63
 		</nav><!-- #comment-nav-below -->
@@ -67,9 +67,9 @@  discard block
 block discarded – undo
67 67
 
68 68
 	<?php
69 69
         // If comments are closed and there are comments, let's leave a little note, shall we?
70
-        if ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
70
+        if (!comments_open() && '0' != get_comments_number() && post_type_supports(get_post_type(), 'comments')) :
71 71
     ?>
72
-		<p class="no-comments"><?php _e( 'Comments are closed.', 'stash' ); ?></p>
72
+		<p class="no-comments"><?php _e('Comments are closed.', 'stash'); ?></p>
73 73
 	<?php endif; ?>
74 74
 
75 75
 	<?php comment_form(); ?>
Please login to merge, or discard this patch.