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 ( a127b9...1366ff )
by
unknown
12s
created
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/lib/images.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
      */
12 12
     function get($name)
13 13
     {
14
-        return get_template_directory_uri() . '/dist/images/' . $name;
14
+        return get_template_directory_uri().'/dist/images/'.$name;
15 15
     }
16 16
 
17 17
     /**
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
         if (strpos($imageUrl, '.svg') !== false) {
29 29
             return file_get_contents($imageUrl);
30 30
         } else {
31
-            return "<img src='" . $this->get($name) . "' />";
31
+            return "<img src='".$this->get($name)."' />";
32 32
         }
33 33
     }
34 34
 }
35 35
\ No newline at end of file
Please login to merge, or discard this patch.
web/app/themes/stash/lib/custom.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      */
13 13
     public function registerPostTypes()
14 14
     {
15
-        foreach (glob(get_template_directory() . "/inc/post-types/*.php") as $filename) {
15
+        foreach (glob(get_template_directory()."/inc/post-types/*.php") as $filename) {
16 16
             include_once $filename;
17 17
         }
18 18
     }
@@ -22,13 +22,13 @@  discard block
 block discarded – undo
22 22
      */
23 23
     public function registerTaxonomies()
24 24
     {
25
-        foreach (glob(get_template_directory() . "/inc/taxonomies/*.php") as $filename) {
25
+        foreach (glob(get_template_directory()."/inc/taxonomies/*.php") as $filename) {
26 26
             include_once $filename;
27 27
         }
28 28
     }
29 29
 }
30 30
 
31
-add_action('init', function () {
31
+add_action('init', function() {
32 32
     $custom = new Custom();
33 33
     $custom->registerPostTypes();
34 34
     $custom->registerTaxonomies();
Please login to merge, or discard this patch.
web/app/themes/stash/lib/acf.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -59,9 +59,9 @@  discard block
 block discarded – undo
59 59
 
60 60
             foreach ($list_searcheable_acf as $searcheable_acf) {
61 61
                 if ($searcheable_acf == $list_searcheable_acf[0]) {
62
-                    $where .= " (meta_key LIKE '%" . $searcheable_acf . "%' AND meta_value LIKE '%$tag%') ";
62
+                    $where .= " (meta_key LIKE '%".$searcheable_acf."%' AND meta_value LIKE '%$tag%') ";
63 63
                 } else {
64
-                    $where .= " OR (meta_key LIKE '%" . $searcheable_acf . "%' AND meta_value LIKE '%$tag%') ";
64
+                    $where .= " OR (meta_key LIKE '%".$searcheable_acf."%' AND meta_value LIKE '%$tag%') ";
65 65
                 }
66 66
 
67 67
                 $where .= ")
@@ -93,6 +93,6 @@  discard block
 block discarded – undo
93 93
     }
94 94
 }
95 95
 
96
-add_action('init', function () {
96
+add_action('init', function() {
97 97
     $acf = new ACF();
98 98
 });
99 99
\ No newline at end of file
Please login to merge, or discard this patch.
web/app/themes/stash/lib/extras.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,17 +24,17 @@
 block discarded – undo
24 24
     return $classes;
25 25
 }
26 26
 
27
-add_filter('body_class', __NAMESPACE__ . '\\body_class');
27
+add_filter('body_class', __NAMESPACE__.'\\body_class');
28 28
 
29 29
 /**
30 30
  * Clean up the_excerpt()
31 31
  */
32 32
 function excerpt_more()
33 33
 {
34
-    return ' &hellip; <a href="' . get_permalink() . '">' . __('Continued', 'stash') . '</a>';
34
+    return ' &hellip; <a href="'.get_permalink().'">'.__('Continued', 'stash').'</a>';
35 35
 }
36 36
 
37
-add_filter('excerpt_more', __NAMESPACE__ . '\\excerpt_more');
37
+add_filter('excerpt_more', __NAMESPACE__.'\\excerpt_more');
38 38
 
39 39
 function dd($var)
40 40
 {
Please login to merge, or discard this patch.
web/app/themes/stash/lib/assets.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -12,35 +12,35 @@
 block discarded – undo
12 12
      */
13 13
     public function load()
14 14
     {
15
-        $vendorJsExists = file_exists(get_template_directory() . '/dist/js/vendor.js');
16
-        $mainJsExists = file_exists(get_template_directory() . '/dist/js/main.js');
15
+        $vendorJsExists = file_exists(get_template_directory().'/dist/js/vendor.js');
16
+        $mainJsExists = file_exists(get_template_directory().'/dist/js/main.js');
17 17
         $mainJsDependencies = [];
18 18
 
19
-        $mainCssExists = file_exists(get_template_directory() . '/dist/css/main.css');
20
-        $vendorCssExists = file_exists(get_template_directory() . '/dist/css/vendor.css');
19
+        $mainCssExists = file_exists(get_template_directory().'/dist/css/main.css');
20
+        $vendorCssExists = file_exists(get_template_directory().'/dist/css/vendor.css');
21 21
         $mainCssDependencies = [];
22 22
 
23 23
         if ($vendorJsExists) {
24
-            wp_enqueue_script('stashVendorJs', get_template_directory_uri() . '/dist/js/vendor.js', [], filemtime(get_stylesheet_directory() . '/dist/js/vendor.js'), true);
24
+            wp_enqueue_script('stashVendorJs', get_template_directory_uri().'/dist/js/vendor.js', [], filemtime(get_stylesheet_directory().'/dist/js/vendor.js'), true);
25 25
             array_push($mainJsDependencies, 'stashVendorJs');
26 26
         }
27 27
 
28 28
         if ($mainJsExists) {
29
-            wp_enqueue_script('stashMainJs', get_template_directory_uri() . '/dist/js/main.js', $mainJsDependencies, filemtime(get_stylesheet_directory() . '/dist/js/main.js'), true);
29
+            wp_enqueue_script('stashMainJs', get_template_directory_uri().'/dist/js/main.js', $mainJsDependencies, filemtime(get_stylesheet_directory().'/dist/js/main.js'), true);
30 30
         }
31 31
 
32 32
         if ($vendorCssExists) {
33
-            wp_enqueue_style('stashVendorCss', get_template_directory_uri() . '/dist/css/vendor.css', [], filemtime(get_stylesheet_directory() . '/dist/css/vendor.css'));
33
+            wp_enqueue_style('stashVendorCss', get_template_directory_uri().'/dist/css/vendor.css', [], filemtime(get_stylesheet_directory().'/dist/css/vendor.css'));
34 34
             array_push($mainCssDependencies, 'stashVendorCss');
35 35
         }
36 36
 
37 37
         if ($mainCssExists) {
38
-            wp_enqueue_style('stashMainCss', get_template_directory_uri() . '/dist/css/main.css', $mainCssDependencies, filemtime(get_stylesheet_directory() . '/dist/css/main.css'));
38
+            wp_enqueue_style('stashMainCss', get_template_directory_uri().'/dist/css/main.css', $mainCssDependencies, filemtime(get_stylesheet_directory().'/dist/css/main.css'));
39 39
         }
40 40
     }
41 41
 }
42 42
 
43
-add_action('wp_enqueue_scripts', function () {
43
+add_action('wp_enqueue_scripts', function() {
44 44
     $assets = new Assets();
45 45
     $assets->load();
46 46
 }, 100);
47 47
\ No newline at end of file
Please login to merge, or discard this patch.
web/app/themes/stash/lib/transients.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -82,12 +82,12 @@
 block discarded – undo
82 82
 
83 83
 $transientHelper = new TransientHelper();
84 84
 
85
-add_action('post_updated', function () use ($transientHelper) {
85
+add_action('post_updated', function() use ($transientHelper) {
86 86
     $transientHelper->deleteAll();
87 87
 });
88
-add_action('save_post', function () use ($transientHelper) {
88
+add_action('save_post', function() use ($transientHelper) {
89 89
     $transientHelper->deleteAll();
90 90
 });
91
-add_action('add_attachment', function () use ($transientHelper) {
91
+add_action('add_attachment', function() use ($transientHelper) {
92 92
     $transientHelper->deleteAll();
93 93
 });
94 94
\ No newline at end of file
Please login to merge, or discard this patch.
web/app/themes/stash/inc/taxonomies/example.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -8,14 +8,14 @@
 block discarded – undo
8 8
 $labels = array(
9 9
     'name'              => _x($plural, 'taxonomy general name', 'stash'),
10 10
     'singular_name'     => _x($single, 'taxonomy singular name', 'stash'),
11
-    'search_items'      => __('Search ' . $plural, 'stash'),
11
+    'search_items'      => __('Search '.$plural, 'stash'),
12 12
     'all_items'         => __('All Genres', 'stash'),
13
-    'parent_item'       => __('Parent ' . $single, 'stash'),
14
-    'parent_item_colon' => __('Parent :' . $single, 'stash'),
15
-    'edit_item'         => __('Edit ' . $single, 'stash'),
16
-    'update_item'       => __('Update ' . $single, 'stash'),
17
-    'add_new_item'      => __('Add New ' . $single, 'stash'),
18
-    'new_item_name'     => __('New ' . $single . ' Name', 'stash'),
13
+    'parent_item'       => __('Parent '.$single, 'stash'),
14
+    'parent_item_colon' => __('Parent :'.$single, 'stash'),
15
+    'edit_item'         => __('Edit '.$single, 'stash'),
16
+    'update_item'       => __('Update '.$single, 'stash'),
17
+    'add_new_item'      => __('Add New '.$single, 'stash'),
18
+    'new_item_name'     => __('New '.$single.' Name', 'stash'),
19 19
     'menu_name'         => __($single, 'stash'),
20 20
 );
21 21
 
Please login to merge, or discard this patch.
web/app/themes/stash/lib/controller.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     /**
35 35
      * Set all pages from within the functions.php->setControllers()
36 36
      *
37
-     * @param $pages
37
+     * @param string[] $pages
38 38
      */
39 39
     public function setPages($pages)
40 40
     {
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
     /**
106 106
      * Return name of the body class
107 107
      *
108
-     * @return bool|string
108
+     * @return string|false
109 109
      */
110 110
     public function getClass()
111 111
     {
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
         $context = $this->context;
74 74
 
75
-        $file = get_template_directory() . '/controllers/single/' . $this->context['post']->post_type . '.php';
75
+        $file = get_template_directory().'/controllers/single/'.$this->context['post']->post_type.'.php';
76 76
 
77 77
         if (file_exists($file)) {
78 78
             /**
@@ -80,13 +80,13 @@  discard block
 block discarded – undo
80 80
              */
81 81
             include($file);
82 82
         } else {
83
-            Timber::render(array('single-' . $context['post']->ID . '.twig', 'single-' . $context['post']->post_type . '.twig', 'single.twig'), $context, Cache::getTimerTime());
83
+            Timber::render(array('single-'.$context['post']->ID.'.twig', 'single-'.$context['post']->post_type.'.twig', 'single.twig'), $context, Cache::getTimerTime());
84 84
         }
85 85
     }
86 86
 
87 87
     public function fourOFour()
88 88
     {
89
-        include(get_template_directory() . '/controllers/404.php');
89
+        include(get_template_directory().'/controllers/404.php');
90 90
     }
91 91
 
92 92
     public function archive()
@@ -96,9 +96,9 @@  discard block
 block discarded – undo
96 96
         $context = $this->context;
97 97
 
98 98
         if (is_category()) {
99
-            $file = get_template_directory() . '/controllers/archive/category.php';
99
+            $file = get_template_directory().'/controllers/archive/category.php';
100 100
         } else {
101
-            $file = get_template_directory() . '/controllers/archive/' . $this->context['post']->title . '.php';
101
+            $file = get_template_directory().'/controllers/archive/'.$this->context['post']->title.'.php';
102 102
         }
103 103
 
104 104
         if (file_exists($file)) {
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
              */
108 108
             include($file);
109 109
         } else {
110
-            Timber::render(array('single-' . $context['post']->ID . '.twig', 'single-' . $context['post']->post_type . '.twig', 'single.twig'), $context, Cache::getTimerTime());
110
+            Timber::render(array('single-'.$context['post']->ID.'.twig', 'single-'.$context['post']->post_type.'.twig', 'single.twig'), $context, Cache::getTimerTime());
111 111
         }
112 112
     }
113 113
 
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
                 /**
122 122
                  * See if controller excists else fall back to default
123 123
                  */
124
-                $file = get_template_directory() . '/controllers/pages/' . $page . '.php';
124
+                $file = get_template_directory().'/controllers/pages/'.$page.'.php';
125 125
                 if (file_exists($file)) {
126 126
                     $this->found = $page;
127 127
 
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
     {
150 150
         $this->setContext();
151 151
         $context = $this->context;
152
-        Timber::render(['page-' . $this->context['post']->post_name . '.twig', 'page.twig'], $this->context, Cache::getTimerTime());
152
+        Timber::render(['page-'.$this->context['post']->post_name.'.twig', 'page.twig'], $this->context, Cache::getTimerTime());
153 153
     }
154 154
 
155 155
     /**
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
     public function getClass()
161 161
     {
162 162
         if ($this->found) {
163
-            return 'page-' . $this->found;
163
+            return 'page-'.$this->found;
164 164
         } else {
165 165
             return false;
166 166
         }
Please login to merge, or discard this patch.