@@ -34,7 +34,7 @@ discard block |
||
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 |
||
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 | { |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | |
72 | 72 | $context = $this->context; |
73 | 73 | |
74 | - $file = get_template_directory() . '/controllers/single/' . $this->context['post']->post_type . '.php'; |
|
74 | + $file = get_template_directory().'/controllers/single/'.$this->context['post']->post_type.'.php'; |
|
75 | 75 | |
76 | 76 | if (file_exists($file)) { |
77 | 77 | /** |
@@ -79,13 +79,13 @@ discard block |
||
79 | 79 | */ |
80 | 80 | include($file); |
81 | 81 | } else { |
82 | - Timber::render(array('single-' . $context['post']->ID . '.twig', 'single-' . $context['post']->post_type . '.twig', 'single.twig'), $context, Cache::getTimerTime()); |
|
82 | + Timber::render(array('single-'.$context['post']->ID.'.twig', 'single-'.$context['post']->post_type.'.twig', 'single.twig'), $context, Cache::getTimerTime()); |
|
83 | 83 | } |
84 | 84 | } |
85 | 85 | |
86 | 86 | public function fourOFour() |
87 | 87 | { |
88 | - include(get_template_directory() . '/controllers/404.php'); |
|
88 | + include(get_template_directory().'/controllers/404.php'); |
|
89 | 89 | } |
90 | 90 | |
91 | 91 | public function archive() |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | |
95 | 95 | $context = $this->context; |
96 | 96 | |
97 | - $file = get_template_directory() . '/controllers/archive/' . $this->context['post']->post_type . '.php'; |
|
97 | + $file = get_template_directory().'/controllers/archive/'.$this->context['post']->post_type.'.php'; |
|
98 | 98 | |
99 | 99 | if (file_exists($file)) { |
100 | 100 | /** |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | */ |
103 | 103 | include($file); |
104 | 104 | } else { |
105 | - Timber::render(array('single-' . $context['post']->ID . '.twig', 'single-' . $context['post']->post_type . '.twig', 'single.twig'), $context, Cache::getTimerTime()); |
|
105 | + Timber::render(array('single-'.$context['post']->ID.'.twig', 'single-'.$context['post']->post_type.'.twig', 'single.twig'), $context, Cache::getTimerTime()); |
|
106 | 106 | } |
107 | 107 | } |
108 | 108 | |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | /** |
117 | 117 | * See if controller excists else fall back to default |
118 | 118 | */ |
119 | - $file = get_template_directory() . '/controllers/pages/' . $page . '.php'; |
|
119 | + $file = get_template_directory().'/controllers/pages/'.$page.'.php'; |
|
120 | 120 | if (file_exists($file)) { |
121 | 121 | $this->found = $page; |
122 | 122 | |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | { |
145 | 145 | $this->setContext(); |
146 | 146 | $context = $this->context; |
147 | - Timber::render(['page-' . $this->context['post']->post_name . '.twig', 'page.twig'], $this->context, Cache::getTimerTime()); |
|
147 | + Timber::render(['page-'.$this->context['post']->post_name.'.twig', 'page.twig'], $this->context, Cache::getTimerTime()); |
|
148 | 148 | } |
149 | 149 | |
150 | 150 | /** |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | public function getClass() |
156 | 156 | { |
157 | 157 | if ($this->found) { |
158 | - return 'page-' . $this->found; |
|
158 | + return 'page-'.$this->found; |
|
159 | 159 | } else { |
160 | 160 | return false; |
161 | 161 | } |
@@ -6,15 +6,15 @@ |
||
6 | 6 | * Add or remove files to the array as needed. Supports child theme overrides. |
7 | 7 | */ |
8 | 8 | $stash_includes = [ |
9 | - 'lib/cache.php', // Cache |
|
9 | + 'lib/cache.php', // Cache |
|
10 | 10 | 'lib/controller.php', // Controller setup |
11 | - 'lib/timber.php', // Twig magic |
|
12 | - 'lib/assets.php', // Scripts and stylesheets |
|
13 | - 'lib/extras.php', // Custom functions |
|
14 | - 'lib/setup.php', // Theme setup |
|
15 | - 'lib/images.php', // Helper for retrieving Images |
|
16 | - 'lib/custom.php', // Load custom post types and taxonomies |
|
17 | - 'lib/acf.php', // Functions related to ACF |
|
11 | + 'lib/timber.php', // Twig magic |
|
12 | + 'lib/assets.php', // Scripts and stylesheets |
|
13 | + 'lib/extras.php', // Custom functions |
|
14 | + 'lib/setup.php', // Theme setup |
|
15 | + 'lib/images.php', // Helper for retrieving Images |
|
16 | + 'lib/custom.php', // Load custom post types and taxonomies |
|
17 | + 'lib/acf.php', // Functions related to ACF |
|
18 | 18 | 'lib/transients.php', // Clear all transients on database changes |
19 | 19 | ]; |
20 | 20 |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | ]); |
14 | 14 | } |
15 | 15 | |
16 | -add_action('init', __NAMESPACE__ . '\\setControllers'); |
|
16 | +add_action('init', __NAMESPACE__.'\\setControllers'); |
|
17 | 17 | |
18 | 18 | function setup() |
19 | 19 | { |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | // Make theme available for translation |
29 | 29 | // Community translations can be found at https://github.com/roots/sage-translations |
30 | - load_theme_textdomain('stash', get_template_directory() . '/lang'); |
|
30 | + load_theme_textdomain('stash', get_template_directory().'/lang'); |
|
31 | 31 | |
32 | 32 | // Enable plugins to manage the document title |
33 | 33 | // http://codex.wordpress.org/Function_Reference/add_theme_support#Title_Tag |
@@ -56,4 +56,4 @@ discard block |
||
56 | 56 | add_theme_support('menus'); |
57 | 57 | } |
58 | 58 | |
59 | -add_action('after_setup_theme', __NAMESPACE__ . '\\setup'); |
|
59 | +add_action('after_setup_theme', __NAMESPACE__.'\\setup'); |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | $root_dir = dirname(__DIR__); |
5 | 5 | |
6 | 6 | /** @var string Document Root */ |
7 | -$webroot_dir = $root_dir . '/web'; |
|
7 | +$webroot_dir = $root_dir.'/web'; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Expose global env() function from oscarotero/env |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | * Use Dotenv to set required environment variables and load .env file in root |
16 | 16 | */ |
17 | 17 | $dotenv = new Dotenv\Dotenv($root_dir); |
18 | -if (file_exists($root_dir . '/.env')) { |
|
18 | +if (file_exists($root_dir.'/.env')) { |
|
19 | 19 | $dotenv->load(); |
20 | 20 | $dotenv->required(['DB_NAME', 'DB_USER', 'DB_PASSWORD', 'ENV_DEVELOPMENT']); |
21 | 21 | } |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | */ |
27 | 27 | define('WP_ENV', env('WP_ENV') ?: 'development'); |
28 | 28 | |
29 | -$env_config = __DIR__ . '/environments/' . WP_ENV . '.php'; |
|
29 | +$env_config = __DIR__.'/environments/'.WP_ENV.'.php'; |
|
30 | 30 | |
31 | 31 | if (file_exists($env_config)) { |
32 | 32 | require_once $env_config; |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | $WP_HOME = $envs['development']; |
57 | 57 | } |
58 | 58 | |
59 | -$WP_SITEURL = $WP_HOME . '/wp'; |
|
59 | +$WP_SITEURL = $WP_HOME.'/wp'; |
|
60 | 60 | |
61 | 61 | define('WP_HOME', $WP_HOME); |
62 | 62 | define('WP_SITEURL', $WP_SITEURL); |
@@ -65,8 +65,8 @@ discard block |
||
65 | 65 | * Custom Content Directory |
66 | 66 | */ |
67 | 67 | define('CONTENT_DIR', '/app'); |
68 | -define('WP_CONTENT_DIR', $webroot_dir . CONTENT_DIR); |
|
69 | -define('WP_CONTENT_URL', WP_HOME . CONTENT_DIR); |
|
68 | +define('WP_CONTENT_DIR', $webroot_dir.CONTENT_DIR); |
|
69 | +define('WP_CONTENT_URL', WP_HOME.CONTENT_DIR); |
|
70 | 70 | |
71 | 71 | /** |
72 | 72 | * DB settings |
@@ -102,5 +102,5 @@ discard block |
||
102 | 102 | * Bootstrap WordPress |
103 | 103 | */ |
104 | 104 | if (!defined('ABSPATH')) { |
105 | - define('ABSPATH', $webroot_dir . '/wp/'); |
|
105 | + define('ABSPATH', $webroot_dir.'/wp/'); |
|
106 | 106 | } |
107 | 107 | \ No newline at end of file |
@@ -11,7 +11,7 @@ discard block |
||
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 | /** |
@@ -22,12 +22,12 @@ discard block |
||
22 | 22 | */ |
23 | 23 | function fetch($name) |
24 | 24 | { |
25 | - return get_stylesheet_directory() . '/dist/images/' . $name; |
|
25 | + return get_stylesheet_directory().'/dist/images/'.$name; |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | function display($name) |
29 | 29 | { |
30 | - return "<img src='" . $this->get($name) . "' />"; |
|
30 | + return "<img src='".$this->get($name)."' />"; |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |
@@ -2,19 +2,19 @@ |
||
2 | 2 | |
3 | 3 | $context['title'] = 'Archive'; |
4 | 4 | if (is_day()) { |
5 | - $context['title'] = 'Archive: ' . get_the_date('D M Y'); |
|
5 | + $context['title'] = 'Archive: '.get_the_date('D M Y'); |
|
6 | 6 | } else if (is_month()) { |
7 | - $context['title'] = 'Archive: ' . get_the_date('M Y'); |
|
7 | + $context['title'] = 'Archive: '.get_the_date('M Y'); |
|
8 | 8 | } else if (is_year()) { |
9 | - $context['title'] = 'Archive: ' . get_the_date('Y'); |
|
9 | + $context['title'] = 'Archive: '.get_the_date('Y'); |
|
10 | 10 | } else if (is_tag()) { |
11 | 11 | $context['title'] = single_tag_title('', false); |
12 | 12 | } else if (is_category()) { |
13 | 13 | $context['title'] = single_cat_title('', false); |
14 | - array_unshift($templates, 'archive-' . get_query_var('cat') . '.twig'); |
|
14 | + array_unshift($templates, 'archive-'.get_query_var('cat').'.twig'); |
|
15 | 15 | } else if (is_post_type_archive()) { |
16 | 16 | $context['title'] = post_type_archive_title('', false); |
17 | - array_unshift($templates, 'archive-' . get_post_type() . '.twig'); |
|
17 | + array_unshift($templates, 'archive-'.get_post_type().'.twig'); |
|
18 | 18 | } |
19 | 19 | |
20 | 20 | $context['posts'] = Timber::get_posts(); |
@@ -1,4 +1,4 @@ |
||
1 | 1 | <?php |
2 | 2 | use Undefined\Stash\Cache; |
3 | 3 | |
4 | -Timber::render(array('single-' . $context['post']->ID . '.twig', 'single-' . $context['post']->post_type . '.twig', 'single.twig'), $context, Cache::getTimerTime()); |
|
4 | +Timber::render(array('single-'.$context['post']->ID.'.twig', 'single-'.$context['post']->post_type.'.twig', 'single.twig'), $context, Cache::getTimerTime()); |